summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp45/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp45/init.c')
-rw-r--r--testsuites/sptests/sp45/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/sp45/init.c b/testsuites/sptests/sp45/init.c
index 9192adc082..b8b43b4df4 100644
--- a/testsuites/sptests/sp45/init.c
+++ b/testsuites/sptests/sp45/init.c
@@ -13,6 +13,8 @@
#include <tmacros.h>
+const char rtems_test_name[] = "SP 45";
+
rtems_task Init(
rtems_task_argument argument
);
@@ -52,7 +54,7 @@ rtems_task Init(
{
rtems_status_code status;
- puts( "\n\n*** TEST 45 ***" );
+ TEST_BEGIN();
status = rtems_timer_initiate_server(
RTEMS_TIMER_SERVER_DEFAULT_PRIORITY,
@@ -113,7 +115,7 @@ rtems_task Init(
directive_failed( status, "rtems_timer_delete" );
- puts( "*** END OF TEST 45 *** " );
+ TEST_END();
rtems_test_exit( 0 );
}
@@ -128,6 +130,8 @@ rtems_task Init(
#define CONFIGURE_MAXIMUM_TIMERS 2
#define CONFIGURE_INIT_TASK_STACK_SIZE (RTEMS_MINIMUM_STACK_SIZE * 2)
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_EXTRA_TASK_STACKS (1 * RTEMS_MINIMUM_STACK_SIZE)