summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm16/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/tmtests/tm16/task1.c')
-rw-r--r--testsuites/tmtests/tm16/task1.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/tmtests/tm16/task1.c b/testsuites/tmtests/tm16/task1.c
index fde7e2b749..c4aa255564 100644
--- a/testsuites/tmtests/tm16/task1.c
+++ b/testsuites/tmtests/tm16/task1.c
@@ -14,6 +14,8 @@
#define CONFIGURE_INIT
#include "system.h"
+const char rtems_test_name[] = "TIME TEST 16";
+
uint32_t Task_count;
rtems_task test_init(
@@ -39,7 +41,7 @@ rtems_task Init(
Print_Warning();
- puts( "\n\n*** TIME TEST 16 ***" );
+ TEST_BEGIN();
status = rtems_task_create(
rtems_build_name( 'T', 'E', 'S', 'T' ),
@@ -147,6 +149,6 @@ rtems_task High_task(
CALLING_OVERHEAD_EVENT_SEND
);
- puts( "*** END OF TEST 16 ***" );
+ TEST_END();
rtems_test_exit( 0 );
}