summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spmountmgr01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/spmountmgr01/init.c')
-rw-r--r--testsuites/sptests/spmountmgr01/init.c105
1 files changed, 105 insertions, 0 deletions
diff --git a/testsuites/sptests/spmountmgr01/init.c b/testsuites/sptests/spmountmgr01/init.c
new file mode 100644
index 0000000000..4e5b8a4282
--- /dev/null
+++ b/testsuites/sptests/spmountmgr01/init.c
@@ -0,0 +1,105 @@
+/*
+ * COPYRIGHT (c) 1989-2010.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#include <tmacros.h>
+#include "test_support.h"
+#include <rtems/score/heap.h>
+#include <errno.h>
+#include <rtems/libio_.h>
+
+extern Heap_Control *RTEMS_Malloc_Heap;
+
+int fs_mount( rtems_filesystem_mount_table_entry_t *mt_entry,
+ const void *data )
+{
+ return 0;
+}
+
+rtems_task Init(
+ rtems_task_argument argument
+)
+{
+ int status = 0;
+ void *alloc_ptr = (void *)0;
+ Heap_Information_block Info;
+
+ puts( "\n\n*** TEST MOUNT MANAGER ROUTINE - 01 ***" );
+
+ puts( "Init - allocating most of heap -- OK" );
+ _Heap_Get_information(RTEMS_Malloc_Heap, &Info);
+ alloc_ptr = malloc( Info.Free.largest - 4 );
+ rtems_test_assert( alloc_ptr != NULL );
+
+ puts( "Init - attempt to register filesystem fs - expect ENOMEM" );
+ status = rtems_filesystem_register( "fs", fs_mount );
+ rtems_test_assert( status == -1 );
+ rtems_test_assert( errno == ENOMEM );
+
+ puts( "Init - freeing allocated memory -- OK" );
+ free( alloc_ptr );
+
+ puts( "Init - register filesystem fs -- OK" );
+ status = rtems_filesystem_register( "fs", fs_mount );
+ rtems_test_assert( status == 0 );
+
+ puts( "Init - register filesystem fs - expect EINVAL" );
+ status = rtems_filesystem_register( "fs", fs_mount );
+ rtems_test_assert( status == -1 );
+ rtems_test_assert( errno == EINVAL );
+
+ puts( "Init - register filesystem bfs -- OK" );
+ status = rtems_filesystem_register( "bfs", fs_mount );
+ rtems_test_assert( status == 0 );
+
+ puts( "Init - register filesystem bfs - expect EINVAL" );
+ status = rtems_filesystem_register( "bfs", fs_mount );
+ rtems_test_assert( status == -1 );
+ rtems_test_assert( errno == EINVAL );
+
+ puts( "Init - attempt to unregister with bad args - expect EINVAL" );
+ status = rtems_filesystem_unregister( NULL );
+ rtems_test_assert( status == -1 );
+ rtems_test_assert( errno == EINVAL );
+
+ puts( "Init - attempt to unregister fs -- OK" );
+ status = rtems_filesystem_unregister( "fs" );
+ rtems_test_assert( status == 0 );
+
+ puts( "Init - attempt to unregister fs again - expect ENOENT" );
+ status = rtems_filesystem_unregister( "fs" );
+ rtems_test_assert( status == -1 );
+ rtems_test_assert( errno == ENOENT );
+
+ puts( "Init - attempt to unregister bfs -- OK" );
+ status = rtems_filesystem_unregister( "bfs" );
+ rtems_test_assert( status == 0 );
+
+ puts( "Init - attempt to unregister bfs again - expect ENOENT" );
+ status = rtems_filesystem_unregister( "bfs" );
+ rtems_test_assert( status == -1 );
+ rtems_test_assert( errno == ENOENT );
+
+ puts( "*** END OF TEST MOUNT MANAGER ROUTINE - 01 ***" );
+ rtems_test_exit(0);
+}
+
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+
+#include <rtems/confdefs.h>
+/* end of file */