summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spwkspace/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/spwkspace/init.c
parenttests/psxtests: Use <rtems/test.h> (diff)
downloadrtems-6c0301daad418d362f71eaa7e5c4b6a2d948fc50.tar.bz2
tests/sptests: Use <rtems/test.h>
Diffstat (limited to 'testsuites/sptests/spwkspace/init.c')
-rw-r--r--testsuites/sptests/spwkspace/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/spwkspace/init.c b/testsuites/sptests/spwkspace/init.c
index 05a50697d3..5131ebc189 100644
--- a/testsuites/sptests/spwkspace/init.c
+++ b/testsuites/sptests/spwkspace/init.c
@@ -19,6 +19,8 @@
#include <rtems/score/wkspace.h>
+const char rtems_test_name[] = "SPWKSPACE";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
@@ -73,7 +75,7 @@ rtems_task Init(
bool retbool;
Heap_Information_block info;
- puts( "\n\n*** TEST WORKSPACE CLASSIC API ***" );
+ TEST_BEGIN();
puts( "rtems_workspace_get_information - null pointer" );
retbool = rtems_workspace_get_information( NULL );
@@ -114,7 +116,7 @@ rtems_task Init(
puts( "_Workspace_Allocate_aligned" );
test_workspace_allocate_aligned();
- puts( "*** END OF TEST WORKSPACE CLASSIC API ***" );
+ TEST_END();
rtems_test_exit( 0 );
}
@@ -123,6 +125,8 @@ rtems_task Init(
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_MAXIMUM_TASKS 1