summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/block15
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/block15
parenttests/fstests: Remove duplicate begin/end messages (diff)
downloadrtems-f8b2eb03f72d9d1a2c2fe9bc8775c53e4b594133.tar.bz2
tests/libtests: Use <rtems/test.h>
Diffstat (limited to 'testsuites/libtests/block15')
-rw-r--r--testsuites/libtests/block15/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/block15/init.c b/testsuites/libtests/block15/init.c
index a6e49370fc..7c99237097 100644
--- a/testsuites/libtests/block15/init.c
+++ b/testsuites/libtests/block15/init.c
@@ -25,6 +25,8 @@
#include <rtems/blkdev.h>
#include <rtems/bdbuf.h>
+const char rtems_test_name[] = "BLOCK 15";
+
#define BLOCK_COUNT 20
#define ACTION_COUNT 8
@@ -154,11 +156,11 @@ static void test(void)
static void Init(rtems_task_argument arg)
{
- puts("\n\n*** TEST BLOCK 15 ***");
+ TEST_BEGIN();
test();
- puts("*** END OF TEST BLOCK 15 ***");
+ TEST_END();
rtems_test_exit(0);
}
@@ -176,6 +178,8 @@ static void Init(rtems_task_argument arg)
#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT