From 6b89e95c0fc4a4efc4c5316066fb8f55062f060d Mon Sep 17 00:00:00 2001 From: pjd Date: Sun, 23 Nov 2008 19:58:26 +0000 Subject: FreeBSD's way of handling rmdir("..") is not POSIX-compilant. --- tools/regression/fstest/tests/rmdir/12.t | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'tools/regression/fstest/tests') 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} -- cgit v1.1