summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/gxx01
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-17 08:10:40 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-20 09:10:26 +0100
commitf8b2eb03f72d9d1a2c2fe9bc8775c53e4b594133 (patch)
tree851dc4a6921d6cc7936aefa6343c516fff452dd8 /testsuites/libtests/gxx01
parenttests/fstests: Remove duplicate begin/end messages (diff)
downloadrtems-f8b2eb03f72d9d1a2c2fe9bc8775c53e4b594133.tar.bz2
tests/libtests: Use <rtems/test.h>
Diffstat (limited to 'testsuites/libtests/gxx01')
-rw-r--r--testsuites/libtests/gxx01/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/gxx01/init.c b/testsuites/libtests/gxx01/init.c
index eb46725175..4a4a56f688 100644
--- a/testsuites/libtests/gxx01/init.c
+++ b/testsuites/libtests/gxx01/init.c
@@ -15,6 +15,8 @@
#include "test_support.h"
#include <rtems/gxx_wrappers.h>
+const char rtems_test_name[] = "GXX 1";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
void test_recursive_mutex(void);
@@ -176,7 +178,7 @@ rtems_task Init(
rtems_task_argument argument
)
{
- puts( "\n\n*** TEST GXX 01 ***" );
+ TEST_BEGIN();
test_mutex();
puts( "" );
@@ -190,7 +192,7 @@ rtems_task Init(
test_key();
puts( "" );
- puts( "*** END OF TEST GXX 01 ***" );
+ TEST_END();
rtems_test_exit( 0 );
}
@@ -202,6 +204,8 @@ rtems_task Init(
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_MAXIMUM_SEMAPHORES 2
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT