Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Nov 2008 19:58:26 +0000 (UTC)
From:      Pawel Jakub Dawidek <pjd@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185221 - head/tools/regression/fstest/tests/rmdir
Message-ID:  <200811231958.mANJwQuF062437@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811231958.mANJwQuF062437>