summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/rtems++/Init.cc
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/rtems++/Init.cc')
-rw-r--r--testsuites/libtests/rtems++/Init.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/libtests/rtems++/Init.cc b/testsuites/libtests/rtems++/Init.cc
index da0cdfb251..a8ca075763 100644
--- a/testsuites/libtests/rtems++/Init.cc
+++ b/testsuites/libtests/rtems++/Init.cc
@@ -26,12 +26,14 @@
#define CONFIGURE_INIT
#include "System.h"
+const char rtems_test_name[] = "RTEMS++";
+
// make global so it lasts past the Init task's stack's life time
Task1 task_1;
rtems_task Init(rtems_task_argument )
{
- puts( "\n\n*** RTEMS++ TEST ***" );
+ TEST_BEGIN();
printf( "INIT - Task.create() - " );
task_1.create("TA1 ", 0, RTEMS_MINIMUM_STACK_SIZE);