summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/heapwalk
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/heapwalk')
-rw-r--r--testsuites/libtests/heapwalk/init.c6
-rw-r--r--testsuites/libtests/heapwalk/system.h2
2 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/heapwalk/init.c b/testsuites/libtests/heapwalk/init.c
index af79d1c1e1..497deab449 100644
--- a/testsuites/libtests/heapwalk/init.c
+++ b/testsuites/libtests/heapwalk/init.c
@@ -26,6 +26,8 @@
#include <rtems/score/sysstate.h>
#include <rtems/dumpbuf.h>
+const char rtems_test_name[] = "HEAPWALK";
+
#define TEST_HEAP_SIZE 1024
#define TEST_DEFAULT_PAGESIZE 128
#define DUMP false
@@ -316,7 +318,7 @@ rtems_task Init(
rtems_task_argument argument
)
{
- puts( "\n\n*** HEAP WALK TEST ***" );
+ TEST_BEGIN();
test_system_not_up();
test_check_control();
@@ -326,6 +328,6 @@ rtems_task Init(
test_check_free_block();
test_output();
- puts( "*** END OF HEAP WALK TEST ***" );
+ TEST_END();
rtems_test_exit(0);
}
diff --git a/testsuites/libtests/heapwalk/system.h b/testsuites/libtests/heapwalk/system.h
index 0589bd37a9..affa3f3fe6 100644
--- a/testsuites/libtests/heapwalk/system.h
+++ b/testsuites/libtests/heapwalk/system.h
@@ -37,6 +37,8 @@ void blow_stack( void );
#define CONFIGURE_EXTRA_TASK_STACKS ((TASK_STACK_SIZE)*5)
#define CONFIGURE_MAXIMUM_TASKS 6
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#include <rtems/confdefs.h>