]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/pjdfstest/tests/rmdir/12.t
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / pjdfstest / tests / rmdir / 12.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 desc="rmdir returns EINVAL if the last component of the path is '.' and EEXIST or ENOTEMPTY if the last component of the path is '..'"
5
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
8
9 echo "1..6"
10
11 n0=`namegen`
12 n1=`namegen`
13
14 expect 0 mkdir ${n0} 0755
15 expect 0 mkdir ${n0}/${n1} 0755
16 expect EINVAL rmdir ${n0}/${n1}/.
17 todo FreeBSD "According to POSIX: EEXIST or ENOTEMPTY - The path argument names a directory that is not an empty directory, or there are hard links to the directory other than dot or a single entry in dot-dot."
18 expect "ENOTEMPTY|EEXIST" rmdir ${n0}/${n1}/..
19 expect 0 rmdir ${n0}/${n1}
20 expect 0 rmdir ${n0}