summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp27/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp27/init.c')
-rw-r--r--testsuites/sptests/sp27/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/sp27/init.c b/testsuites/sptests/sp27/init.c
index 23f78737f3..bb4630d2de 100644
--- a/testsuites/sptests/sp27/init.c
+++ b/testsuites/sptests/sp27/init.c
@@ -39,6 +39,8 @@ void doTest(void);
RTEMS_NO_PRIORITY_CEILING|RTEMS_FIFO)
#endif
+const char rtems_test_name[] = "SP " TEST_NAME;
+
rtems_id semaphore;
volatile int flags[NTASK];
@@ -115,16 +117,18 @@ rtems_task Init(
rtems_task_argument ignored
)
{
- puts( "\n\n*** TEST " TEST_NAME " ***" );
+ TEST_BEGIN();
puts( "Testing " TEST_SEMAPHORE_TYPE " semaphore flush" );
doTest();
- puts( "*** END OF TEST " TEST_NAME " ***" );
+ TEST_END();
rtems_test_exit(0);
}
/**************** START OF CONFIGURATION INFORMATION ****************/
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER