* winsup.api/known_bugs.tcl: Remove mknod01 since mknod now works.

* winsup.api/ltp/mknod01.c: Remove root check when running on cygwin.
This commit is contained in:
Christopher Faylor 2004-03-07 04:51:29 +00:00
parent 9514a64249
commit 2942097ac2
3 changed files with 8 additions and 1 deletions

View 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.

View 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]

View 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());