summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp42/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp42/init.c')
-rw-r--r--testsuites/sptests/sp42/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/sp42/init.c b/testsuites/sptests/sp42/init.c
index 16562ba3c8..55faa9b97d 100644
--- a/testsuites/sptests/sp42/init.c
+++ b/testsuites/sptests/sp42/init.c
@@ -20,6 +20,8 @@
#include "tmacros.h"
+const char rtems_test_name[] = "SP 42";
+
#define MAX_TASKS 20
rtems_task Init(rtems_task_argument argument);
@@ -150,7 +152,7 @@ rtems_task Init(
rtems_task_argument argument
)
{
- puts( "\n\n*** START OF TEST 42 ***" );
+ TEST_BEGIN();
if (RTEMS_MAXIMUM_PRIORITY == 255)
Priorities = Priorities_High;
@@ -185,7 +187,7 @@ rtems_task Init(
puts( "Exercising blocking discipline w/unblock in priority order" );
do_test( RTEMS_PRIORITY, FALSE );
- puts( "*** END OF TEST 42 ***" );
+ TEST_END();
rtems_test_exit(0);
}
@@ -199,6 +201,8 @@ rtems_task Init(
#define CONFIGURE_MAXIMUM_TASKS MAX_TASKS+1
#define CONFIGURE_MAXIMUM_SEMAPHORES 1
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#include <rtems/confdefs.h>