maint: add a missed fadvise-tests module
[coreutils/ericb.git] / tests / mkdir / parents
blob405cc19426348a631e3c888086df76d04d1e340f
1 #!/bin/sh
2 # make sure mkdir's -p options works properly
4 # Copyright (C) 2000, 2004, 2006-2010 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 <http://www.gnu.org/licenses/>.
19 if test "$VERBOSE" = yes; then
20 set -x
21 mkdir --version
24 . $srcdir/test-lib.sh
25 skip_if_setgid_
27 mkdir -m 700 e-dir || framework_failure
30 # Make sure `mkdir -p existing-dir' succeeds
31 # and that `mkdir existing-dir' fails.
32 mkdir -p e-dir || fail=1
33 mkdir e-dir > /dev/null 2>&1 && fail=1
35 # Create an existing directory.
36 umask 077
37 mode_str=drwxr-x-wx
38 mode_arg=`rwx_to_mode_ $mode_str`
39 mkdir -m $mode_arg a || fail=1
41 # this `mkdir -p ...' shouldn't change perms of existing dir `a'.
42 d_mode_str=drwx-w--wx
43 d_mode_arg=`rwx_to_mode_ $d_mode_str`
44 mkdir -p -m $d_mode_arg a/b/c/d
46 # Make sure the permissions of `a' haven't been changed.
47 p=`ls -ld a|cut -b-10`; case $p in $mode_str);; *) fail=1;; esac
48 # `b's and `c's should reflect the umask
49 p=`ls -ld a/b|cut -b-10`; case $p in drwx------);; *) fail=1;; esac
50 p=`ls -ld a/b/c|cut -b-10`; case $p in drwx------);; *) fail=1;; esac
52 # `d's perms are determined by the -m argument.
53 p=`ls -ld a/b/c/d|cut -b-10`; case $p in $d_mode_str);; *) fail=1;; esac
55 Exit $fail