summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp38/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp38/init.c')
-rw-r--r--testsuites/sptests/sp38/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/sptests/sp38/init.c b/testsuites/sptests/sp38/init.c
index 907d350dbe..d77d5d2a1c 100644
--- a/testsuites/sptests/sp38/init.c
+++ b/testsuites/sptests/sp38/init.c
@@ -16,6 +16,8 @@
#define CONFIGURE_INIT
#include "system.h"
+const char rtems_test_name[] = "SP 38";
+
volatile bool signal_sent;
volatile bool signal_processed;
@@ -55,7 +57,7 @@ rtems_task Init(
rtems_interval start;
rtems_interval now;
- puts( "\n\n*** TEST 38 ***" );
+ TEST_BEGIN();
main_task = rtems_task_self();
@@ -93,6 +95,6 @@ rtems_task Init(
}
puts( "Signal sent from ISR has been processed" );
- puts( "*** END OF TEST 38 ***" );
+ TEST_END();
rtems_test_exit( 0 );
}