summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxmount/main.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-11-23 18:57:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-11-23 18:57:48 +0000
commit0895bdb89c1674d01ecb9886a0624096ef939ad1 (patch)
tree4bcea896c4f2ef42c786490c685bef6941be19c8 /testsuites/psxtests/psxmount/main.c
parentRemoved. (diff)
downloadrtems-0895bdb89c1674d01ecb9886a0624096ef939ad1.tar.bz2
Added tests in support of the file system infrastructure.
Diffstat (limited to 'testsuites/psxtests/psxmount/main.c')
-rw-r--r--testsuites/psxtests/psxmount/main.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/testsuites/psxtests/psxmount/main.c b/testsuites/psxtests/psxmount/main.c
new file mode 100644
index 0000000000..bd5e6165ae
--- /dev/null
+++ b/testsuites/psxtests/psxmount/main.c
@@ -0,0 +1,31 @@
+/*
+ * Simple test program -- check out of the basic file system mounting
+ * capabilities
+ * Attempt to mount the IMFS file system on a mount point in the base IMFS
+ */
+
+#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 */