svn commit: r185221 - head/tools/regression/fstest/tests/rmdir

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Nov 23 11:58:26 PST 2008


Author: pjd
Date: Sun Nov 23 19:58:26 2008
New Revision: 185221
URL: http://svn.freebsd.org/changeset/base/185221

Log:
  FreeBSD's way of handling rmdir("..") is not POSIX-compilant.

Modified:
  head/tools/regression/fstest/tests/rmdir/12.t

Modified: head/tools/regression/fstest/tests/rmdir/12.t
==============================================================================
--- head/tools/regression/fstest/tests/rmdir/12.t	Sun Nov 23 19:57:16 2008	(r185220)
+++ head/tools/regression/fstest/tests/rmdir/12.t	Sun Nov 23 19:58:26 2008	(r185221)
@@ -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}


More information about the svn-src-head mailing list