summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxfile02/test.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-23 13:40:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-23 13:40:26 +0000
commit62fffe594aa8d609b21642b4a3202bb45cd8d656 (patch)
treeebdf5a8f647f3aa56af3294e7a5768eb848d0ca5 /c/src/tests/psxtests/psxfile02/test.c
parentPatch rtems-rc-19991117-14.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-62fffe594aa8d609b21642b4a3202bb45cd8d656.tar.bz2
Unused and removed.
Diffstat (limited to '')
-rw-r--r--c/src/tests/psxtests/psxfile02/test.c49
1 files changed, 0 insertions, 49 deletions
diff --git a/c/src/tests/psxtests/psxfile02/test.c b/c/src/tests/psxtests/psxfile02/test.c
deleted file mode 100644
index 282a8209d0..0000000000
--- a/c/src/tests/psxtests/psxfile02/test.c
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Simple test program to exercise some of the basic functionality of
- * POSIX Files and Directories Support.
- *
- * This test assumes that the file system is initialized with the
- * following directory structure:
- *
- * XXXX fill this in.
- * /
- * /dev
- * /dev/XXX [where XXX includes at least console]
- *
- *
- */
-
-#include <stdio.h>
-
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <errno.h>
-#include <string.h>
-#include <ctype.h>
-
-#include <assert.h>
-
-/*
- * Main entry point of the test
- */
-
-#if defined(__rtems__)
-int test_main(void)
-#else
-int main(
- int argc,
- char **argv
-)
-#endif
-{
- printf( "\n\n*** FILE TEST 2 ***\n" );
-
- /*
- * XXX test code goes here
- */
-
- printf( "*** END OF FILE TEST 2 ***\n" );
- exit( 0 );
-}