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.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/spmountmgr01/init.c b/testsuites/sptests/spmountmgr01/init.c
index 4b11f31474..2330ca82ba 100644
--- a/testsuites/sptests/spmountmgr01/init.c
+++ b/testsuites/sptests/spmountmgr01/init.c
@@ -18,6 +18,8 @@
#include <rtems/libcsupport.h>
#include <rtems/malloc.h>
+const char rtems_test_name[] = "SPMOUNTMGR 1";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
int fs_mount(
@@ -40,7 +42,7 @@ rtems_task Init(
int status = 0;
void *greedy;
- puts( "\n\n*** TEST MOUNT MANAGER ROUTINE - 01 ***" );
+ TEST_BEGIN();
puts( "Init - allocating most of heap -- OK" );
greedy = rtems_heap_greedy_allocate( NULL, 0 );
@@ -114,7 +116,7 @@ rtems_task Init(
rtems_test_assert( status == -1 );
rtems_test_assert( errno == ENOENT );
- puts( "*** END OF TEST MOUNT MANAGER ROUTINE - 01 ***" );
+ TEST_END();
rtems_test_exit(0);
}
@@ -124,6 +126,8 @@ rtems_task Init(
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT