From f8b2eb03f72d9d1a2c2fe9bc8775c53e4b594133 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 17 Mar 2014 08:10:40 +0100 Subject: tests/libtests: Use --- testsuites/libtests/stackchk/init.c | 6 ++++-- testsuites/libtests/stackchk/system.h | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'testsuites/libtests/stackchk') diff --git a/testsuites/libtests/stackchk/init.c b/testsuites/libtests/stackchk/init.c index 772b039592..c123c01042 100644 --- a/testsuites/libtests/stackchk/init.c +++ b/testsuites/libtests/stackchk/init.c @@ -26,6 +26,8 @@ #define CONFIGURE_INIT #include "system.h" +const char rtems_test_name[] = "STACKCHK"; + rtems_task Init( rtems_task_argument argument ) @@ -33,7 +35,7 @@ rtems_task Init( rtems_time_of_day time; rtems_status_code status; - puts( "\n\n*** TEST STACK CHECKER ***" ); + TEST_BEGIN(); build_time( &time, 12, 31, 1988, 9, 0, 0, 0 ); status = rtems_clock_set( &time ); @@ -99,6 +101,6 @@ void Fatal_extension( } else if ( error != rtems_build_name( 'T', 'A', '1', ' ' ) ) { printk( "unexpected fatal error\n" ); } else { - printk( "*** END OF TEST STACK CHECKER ***\n" ); + rtems_test_endk(); } } diff --git a/testsuites/libtests/stackchk/system.h b/testsuites/libtests/stackchk/system.h index 16b623ae2d..737ed812b2 100644 --- a/testsuites/libtests/stackchk/system.h +++ b/testsuites/libtests/stackchk/system.h @@ -48,7 +48,8 @@ void Fatal_extension( ); #define CONFIGURE_INITIAL_EXTENSIONS \ - { NULL, NULL, NULL, NULL, NULL, NULL, NULL, Fatal_extension } + { NULL, NULL, NULL, NULL, NULL, NULL, NULL, Fatal_extension }, \ + RTEMS_TEST_INITIAL_EXTENSION #include -- cgit v1.2.3