From 6c0301daad418d362f71eaa7e5c4b6a2d948fc50 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 25 Mar 2014 08:06:21 +0100 Subject: tests/sptests: Use --- testsuites/sptests/spcoverage/init.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'testsuites/sptests/spcoverage/init.c') diff --git a/testsuites/sptests/spcoverage/init.c b/testsuites/sptests/spcoverage/init.c index 5d04e91486..a80acec7fe 100644 --- a/testsuites/sptests/spcoverage/init.c +++ b/testsuites/sptests/spcoverage/init.c @@ -13,6 +13,8 @@ #include "tmacros.h" +const char rtems_test_name[] = "SPCOVERAGE"; + /* forward declarations to avoid warnings */ rtems_task Init(rtems_task_argument argument); @@ -20,7 +22,7 @@ rtems_task Init( rtems_task_argument ignored ) { - puts( "\n\n*** TEST COVERAGE MARKERS ***" ); + TEST_BEGIN(); puts( "Init - If coverage enabled, call coverage marker methods" ); #if defined(RTEMS_COVERAGE) @@ -28,7 +30,7 @@ rtems_task Init( end_coverage(); #endif - puts( "*** END OF TEST COVERAGE MARKERS ***" ); + TEST_END(); rtems_test_exit(0); } @@ -38,6 +40,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 -- cgit v1.2.3