maint: add syntax-check to ensure all gl/ files are distributed
[coreutils.git] / tests / mkdir / parents.sh
blobc98ff5c777c307bc96f39515b08f5b7942d2c23d
1 #!/bin/sh
2 # make sure mkdir's -p options works properly
4 # Copyright (C) 2000-2024 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <https://www.gnu.org/licenses/>.
19 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
20 print_ver_ mkdir
21 skip_if_setgid_
22 require_no_default_acl_ .
24 mkdir -m 700 e-dir || framework_failure_
27 # Make sure 'mkdir -p existing-dir' succeeds
28 # and that 'mkdir existing-dir' fails.
29 mkdir -p e-dir || fail=1
30 returns_ 1 mkdir e-dir > /dev/null 2>&1 || fail=1
32 # Create an existing directory.
33 umask 077
34 mode_str=drwxr-x-wx
35 mode_arg=$(rwx_to_mode_ $mode_str)
36 mkdir -m $mode_arg a || fail=1
38 # this 'mkdir -p ...' shouldn't change perms of existing dir 'a'.
39 d_mode_str=drwx-w--wx
40 d_mode_arg=$(rwx_to_mode_ $d_mode_str)
41 mkdir -p -m $d_mode_arg a/b/c/d
43 # Make sure the permissions of 'a' haven't been changed.
44 p=$(ls -ld a|cut -b-10); case $p in $mode_str);; *) fail=1;; esac
45 # 'b's and 'c's should reflect the umask
46 p=$(ls -ld a/b|cut -b-10); case $p in drwx------);; *) fail=1;; esac
47 p=$(ls -ld a/b/c|cut -b-10); case $p in drwx------);; *) fail=1;; esac
49 # 'd's perms are determined by the -m argument.
50 p=$(ls -ld a/b/c/d|cut -b-10); case $p in $d_mode_str);; *) fail=1;; esac
52 Exit $fail