summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/ticker/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-10 16:31:43 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-17 09:17:36 +0100
commit9391f6d6637c752046cdfd89ae2eeea147496e44 (patch)
treefe6ad09c222cdf0489414d4a5a644b10845de333 /testsuites/samples/ticker/init.c
parentsapi: Add <rtems/test.h> (diff)
downloadrtems-9391f6d6637c752046cdfd89ae2eeea147496e44.tar.bz2
tests/samples: Use <rtems/test.h>
Diffstat (limited to '')
-rw-r--r--testsuites/samples/ticker/init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/samples/ticker/init.c b/testsuites/samples/ticker/init.c
index d9366f8fa0..3df984c80c 100644
--- a/testsuites/samples/ticker/init.c
+++ b/testsuites/samples/ticker/init.c
@@ -14,6 +14,8 @@
#define CONFIGURE_INIT
#include "system.h"
+const char rtems_test_name[] = "CLOCK TICK";
+
/*
* Keep the names and IDs in global variables so another task can use them.
*/
@@ -28,7 +30,7 @@ rtems_task Init(
rtems_status_code status;
rtems_time_of_day time;
- puts( "\n\n*** CLOCK TICK TEST ***" );
+ TEST_BEGIN();
time.year = 1988;
time.month = 12;