OSDN Git Service

* winsup.api/known_bugs.tcl: Remove mknod01 since mknod now works.
authorcgf <cgf>
Sun, 7 Mar 2004 04:51:29 +0000 (04:51 +0000)
committercgf <cgf>
Sun, 7 Mar 2004 04:51:29 +0000 (04:51 +0000)
* winsup.api/ltp/mknod01.c: Remove root check when running on cygwin.

winsup/testsuite/ChangeLog
winsup/testsuite/winsup.api/known_bugs.tcl
winsup/testsuite/winsup.api/ltp/mknod01.c

index 033be10..3a79058 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-06  Christopher Faylor  <cgf@redhat.com>
+
+       * winsup.api/known_bugs.tcl: Remove mknod01 since mknod now works.
+       * winsup.api/ltp/mknod01.c: Remove root check when running on cygwin.
+
 2004-03-04  Thomas Pfaff  <tpfaff@gmx.net>
 
        * winsup.api/pthread/mutex8e.c: New testcase.
index f3fc015..0af25ab 100644 (file)
@@ -1,6 +1,6 @@
 set xfail_list [list dup03 dup05 \
     fcntl05 fcntl07B \
-    lseek04 mknod01 select03 \
+    lseek04 select03 \
     setgroups01 setuid02 \
     ulimit01 unlink06 unlink08 \
     sample-fail sample-miscompile]
index 6cfe488..e25194e 100644 (file)
@@ -238,9 +238,11 @@ setup()
     /* make a temp dir and cd to it */
     tst_tmpdir();
 
+#ifndef __CYGWIN__
     /* Check that user is root */
     if ( geteuid() != 0 )
        tst_brkm(TBROK, cleanup, "Must be root for this test!");
+#endif
 
     /* build a temp node name to bre created my mknod */
     sprintf(Path, "./tnode_%d", getpid());