]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/regression/pjdfstest/tests/rmdir/01.t
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / tools / regression / pjdfstest / tests / rmdir / 01.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 desc="rmdir returns ENOTDIR if a component of the path is not a directory"
5
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
8
9 echo "1..14"
10
11 n0=`namegen`
12 n1=`namegen`
13
14 expect 0 mkdir ${n0} 0755
15 expect 0 create ${n0}/${n1} 0644
16 expect ENOTDIR rmdir ${n0}/${n1}/test
17 expect 0 unlink ${n0}/${n1}
18 expect 0 rmdir ${n0}
19
20 expect 0 create ${n0} 0644
21 expect ENOTDIR rmdir ${n0}
22 expect 0 unlink ${n0}
23
24 expect 0 symlink ${n1} ${n0}
25 expect ENOTDIR rmdir ${n0}
26 expect 0 unlink ${n0}
27
28 expect 0 mkfifo ${n0} 0644
29 expect ENOTDIR rmdir ${n0}
30 expect 0 unlink ${n0}