summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tmoverhd/testtask.c
diff options
context:
space:
mode:
authorbjorn larsson <bjornlarsson@oarcorp.com>2014-03-21 10:48:01 -0500
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 08:06:37 +0100
commit2ead50ac4e29d0082dd1f833771a01bb2b642636 (patch)
tree8d62439e985b55410c124d6960255ed28edef2c4 /testsuites/tmtests/tmoverhd/testtask.c
parenttests/sptests: Use <rtems/test.h> (diff)
downloadrtems-2ead50ac4e29d0082dd1f833771a01bb2b642636.tar.bz2
tmtests: convert to test.h
Diffstat (limited to 'testsuites/tmtests/tmoverhd/testtask.c')
-rw-r--r--testsuites/tmtests/tmoverhd/testtask.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/tmtests/tmoverhd/testtask.c b/testsuites/tmtests/tmoverhd/testtask.c
index 370efcf0a6..d14fd8951b 100644
--- a/testsuites/tmtests/tmoverhd/testtask.c
+++ b/testsuites/tmtests/tmoverhd/testtask.c
@@ -14,6 +14,8 @@
#define CONFIGURE_INIT
#include "system.h"
+const char rtems_test_name[] = "OVERHEAD";
+
uint8_t Memory_area[ 2048 ];
uint8_t Internal_port_area[ 256 ];
uint8_t External_port_area[ 256 ];
@@ -32,7 +34,7 @@ rtems_task Init(
Print_Warning();
- puts( "\n\n*** TIME TEST OVERHEAD ***" );
+ TEST_BEGIN();
status = rtems_task_create(
rtems_build_name( 'T', 'A', '1', ' ' ),
@@ -1258,7 +1260,7 @@ rtems_test_pause();
0
);
- puts( "*** END OF TIME OVERHEAD ***" );
+ TEST_END();
rtems_test_exit( 0 );
}