summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests
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
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 'c/src/tests/psxtests')
-rw-r--r--c/src/tests/psxtests/psxfile02/Makefile.am39
-rw-r--r--c/src/tests/psxtests/psxfile02/main.c29
-rw-r--r--c/src/tests/psxtests/psxfile02/psxfile02.scn2
-rw-r--r--c/src/tests/psxtests/psxfile02/test.c49
4 files changed, 0 insertions, 119 deletions
diff --git a/c/src/tests/psxtests/psxfile02/Makefile.am b/c/src/tests/psxtests/psxfile02/Makefile.am
deleted file mode 100644
index 7f0a630d01..0000000000
--- a/c/src/tests/psxtests/psxfile02/Makefile.am
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-## $Id$
-##
-
-AUTOMAKE_OPTIONS = foreign 1.4
-TEST = psxfile02
-
-MANAGERS = all
-
-# C source names, if any, go here -- minus the .c
-C_FILES = main.c test.c
-C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
-
-DOCTYPES = scn
-DOCS = $(DOCTYPES:%=$(TEST).%)
-
-SRCS = $(DOCS) $(C_FILES) $(H_FILES)
-OBJS = $(C_O_FILES)
-
-PRINT_SRCS = $(DOCS)
-
-PGM = ${ARCH}/$(TEST).exe
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(RTEMS_ROOT)/make/leaf.cfg
-include $(top_srcdir)/psxtests.am
-
-#
-# (OPTIONAL) Add local stuff here using +=
-#
-
-${PGM}: $(OBJS) $(LINK_FILES)
- $(make-exe)
-
-# all-local: $(ARCH) $(TMPINSTALL_FILES)
-
-EXTRA_DIST = $(C_FILES) $(DOCS)
-
-include $(top_srcdir)/../../../../automake/local.am
diff --git a/c/src/tests/psxtests/psxfile02/main.c b/c/src/tests/psxtests/psxfile02/main.c
deleted file mode 100644
index 0e8d54fc31..0000000000
--- a/c/src/tests/psxtests/psxfile02/main.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Simple test program -- simplified version of sample test hello.
- */
-
-#define TEST_INIT
-
-#include <bsp.h>
-
-void test_main( void );
-
-rtems_task Init(
- rtems_task_argument ignored
-)
-{
- test_main();
- exit( 0 );
-}
-
-/* configuration information */
-
-#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-
-#include <confdefs.h>
-
-/* end of file */
diff --git a/c/src/tests/psxtests/psxfile02/psxfile02.scn b/c/src/tests/psxtests/psxfile02/psxfile02.scn
deleted file mode 100644
index 139597f9cb..0000000000
--- a/c/src/tests/psxtests/psxfile02/psxfile02.scn
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
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 );
-}