summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp43/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 08:06:21 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 08:06:21 +0100
commit6c0301daad418d362f71eaa7e5c4b6a2d948fc50 (patch)
treed08b9e09d3c69ca35f96c9f1eeff8eb244df92ed /testsuites/sptests/sp43/init.c
parenttests/psxtests: Use <rtems/test.h> (diff)
downloadrtems-6c0301daad418d362f71eaa7e5c4b6a2d948fc50.tar.bz2
tests/sptests: Use <rtems/test.h>
Diffstat (limited to 'testsuites/sptests/sp43/init.c')
-rw-r--r--testsuites/sptests/sp43/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/sptests/sp43/init.c b/testsuites/sptests/sp43/init.c
index 1b393ceb2c..dbea7fa645 100644
--- a/testsuites/sptests/sp43/init.c
+++ b/testsuites/sptests/sp43/init.c
@@ -18,6 +18,8 @@
#include <rtems/score/objectimpl.h>
+const char rtems_test_name[] = "SP 43";
+
/* These functions have both macro and function incarnations */
#undef rtems_build_id
extern rtems_id rtems_build_id(int api,int class,int node,int index);
@@ -126,7 +128,7 @@ rtems_task Init(
int part;
rtems_object_api_class_information info;
- puts( "\n\n*** TEST 43 ***" );
+ TEST_BEGIN();
printf( "RTEMS Version: %s\n", rtems_get_version_string() );
@@ -520,6 +522,6 @@ rtems_task Init(
_Objects_Information_table[OBJECTS_POSIX_API] = tmp;
}
- puts( "*** END OF TEST 43 ***" );
+ TEST_END();
rtems_test_exit( 0 );
}