summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/block17/init.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/libtests/block17/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/block17/init.c b/testsuites/libtests/block17/init.c
index cb656bf493..529027a27d 100644
--- a/testsuites/libtests/block17/init.c
+++ b/testsuites/libtests/block17/init.c
@@ -20,6 +20,8 @@
#include "tmacros.h"
+const char rtems_test_name[] = "BLOCK 17";
+
static void test(void)
{
rtems_status_code sc = rtems_bdbuf_init();
@@ -28,11 +30,11 @@ static void test(void)
static void Init(rtems_task_argument arg)
{
- puts("\n\n*** TEST BLOCK 17 ***");
+ TEST_BEGIN();
test();
- puts("*** END OF TEST BLOCK 17 ***");
+ TEST_END();
rtems_test_exit(0);
}
@@ -47,6 +49,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