]> Zhao Yanbai Git Server - minix.git/commitdiff
Disabled check in test 28 which hard links a directory; this is nott required by...
authorErik van der Kouwe <erik@minix3.org>
Fri, 4 Sep 2009 20:23:25 +0000 (20:23 +0000)
committerErik van der Kouwe <erik@minix3.org>
Fri, 4 Sep 2009 20:23:25 +0000 (20:23 +0000)
test/run
test/test28.c

index 2c571b9070bd25e448f3964348f945888f073697..5a63df35ffc20e991234435bab61ab18a940b4b6 100755 (executable)
--- a/test/run
+++ b/test/run
@@ -12,7 +12,7 @@ badones=                      # list of tests that failed
 
 # Print test welcome message
 clr
-echo "Running POSIX compliance test suite. There are 42 tests in total."
+echo "Running POSIX compliance test suite. There are 43 tests in total."
 echo " "
 
 # Run all the tests, keeping track of who failed.
index d52051ee6c7d963467fffbf421397c15186c4561..223726c845f8d83929aadd236471657302c216c6 100644 (file)
@@ -234,12 +234,14 @@ void test28b()
   if (unlink("foo/empty") != 0) e(34); /* rm empty */
 
   /* See what happens if foo is linked. */
+#if 0
   if (superuser) {
        if (link("foo", "footoo") != 0) e(35);  /* foo still */
        if (rmdir("footoo") != 0) e(36);        /* exist */
        if (chdir("footoo") != -1) e(37);       /* footoo */
        if (errno != ENOENT) e(38);     /* is gone */
   }
+#endif
 #ifdef _MINIX
   /* Some implementations might allow users to link directories. */
   if (!superuser) {