summaryrefslogtreecommitdiffstats
path: root/testsuites/smptests/smpload01
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-17 08:10:19 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-17 09:17:36 +0100
commitad48ebbfc7e56cfdaf33e7a77a314171d6455511 (patch)
treec150e12d845b5fab5cc689e150068b9b9d085b38 /testsuites/smptests/smpload01
parenttests/samples: Use <rtems/test.h> (diff)
downloadrtems-ad48ebbfc7e56cfdaf33e7a77a314171d6455511.tar.bz2
tests/smptests: Use <rtems/test.h>
Diffstat (limited to 'testsuites/smptests/smpload01')
-rw-r--r--testsuites/smptests/smpload01/init.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuites/smptests/smpload01/init.c b/testsuites/smptests/smpload01/init.c
index c7bfb37c16..63c1a90053 100644
--- a/testsuites/smptests/smpload01/init.c
+++ b/testsuites/smptests/smpload01/init.c
@@ -21,6 +21,8 @@
#include <rtems.h>
#include <rtems/profiling.h>
+const char rtems_test_name[] = "SMPLOAD 1";
+
#define CPU_COUNT 32
#define WORKER_COUNT (3 * CPU_COUNT)
@@ -112,12 +114,11 @@ static void test(void)
static void Init(rtems_task_argument arg)
{
- puts("\n\n*** TEST SMPLOAD 1 ***");
+ TEST_BEGIN();
test();
- puts("*** END OF TEST SMPLOAD 1 ***");
-
+ TEST_END();
rtems_test_exit(0);
}