summaryrefslogtreecommitdiffstats
path: root/tools/regression/fstest/tests
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2008-11-23 19:58:26 +0000
committerpjd <pjd@FreeBSD.org>2008-11-23 19:58:26 +0000
commit6b89e95c0fc4a4efc4c5316066fb8f55062f060d (patch)
tree4e8983d70de2c290484fc9e7ca998246eb80588f /tools/regression/fstest/tests
parente20a8f04f0e5ba0f4fd3491e4fbe0aa5833695c0 (diff)
downloadFreeBSD-src-6b89e95c0fc4a4efc4c5316066fb8f55062f060d.zip
FreeBSD-src-6b89e95c0fc4a4efc4c5316066fb8f55062f060d.tar.gz
FreeBSD's way of handling rmdir("..") is not POSIX-compilant.
Diffstat (limited to 'tools/regression/fstest/tests')
-rw-r--r--tools/regression/fstest/tests/rmdir/12.t12
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/regression/fstest/tests/rmdir/12.t b/tools/regression/fstest/tests/rmdir/12.t
index 06852f4..9ba45a4 100644
--- a/tools/regression/fstest/tests/rmdir/12.t
+++ b/tools/regression/fstest/tests/rmdir/12.t
@@ -1,7 +1,7 @@
#!/bin/sh
# $FreeBSD$
-desc="rmdir returns EINVAL if the last component of the path is '.' or '..'"
+desc="rmdir returns EINVAL if the last component of the path is '.' and EEXIST or ENOTEMPTY if the last component of the path is '..'"
dir=`dirname $0`
. ${dir}/../misc.sh
@@ -14,13 +14,7 @@ n1=`namegen`
expect 0 mkdir ${n0} 0755
expect 0 mkdir ${n0}/${n1} 0755
expect EINVAL rmdir ${n0}/${n1}/.
-case "${os}" in
-FreeBSD)
- expect EINVAL rmdir ${n0}/${n1}/..
- ;;
-*)
- expect EEXIST rmdir ${n0}/${n1}/..
- ;;
-esac
+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."
+expect "ENOTEMPTY|EEXIST" rmdir ${n0}/${n1}/..
expect 0 rmdir ${n0}/${n1}
expect 0 rmdir ${n0}
OpenPOWER on IntegriCloud