]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/pjdfstest/tests/rmdir/12.t
gnu/dts: Update our copy of arm dts from Linux 4.16
[FreeBSD/FreeBSD.git] / contrib / pjdfstest / tests / rmdir / 12.t
1 #!/bin/sh
2 # vim: filetype=sh noexpandtab ts=8 sw=8
3 # $FreeBSD: head/tools/regression/pjdfstest/tests/rmdir/12.t 211352 2010-08-15 21:24:17Z pjd $
4
5 desc="rmdir returns EINVAL if the last component of the path is '.' and EEXIST or ENOTEMPTY if the last component of the path is '..'"
6
7 dir=`dirname $0`
8 . ${dir}/../misc.sh
9
10 echo "1..6"
11
12 n0=`namegen`
13 n1=`namegen`
14
15 expect 0 mkdir ${n0} 0755
16 expect 0 mkdir ${n0}/${n1} 0755
17 expect EINVAL rmdir ${n0}/${n1}/.
18 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."
19 expect "ENOTEMPTY|EEXIST" rmdir ${n0}/${n1}/..
20 expect 0 rmdir ${n0}/${n1}
21 expect 0 rmdir ${n0}