summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/speventtransient01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/speventtransient01/init.c')
-rw-r--r--testsuites/sptests/speventtransient01/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/speventtransient01/init.c b/testsuites/sptests/speventtransient01/init.c
index 4e0e9fd99b..91d6ecfc18 100644
--- a/testsuites/sptests/speventtransient01/init.c
+++ b/testsuites/sptests/speventtransient01/init.c
@@ -20,6 +20,8 @@
#include "tmacros.h"
+const char rtems_test_name[] = "SPEVENTTRANSIENT 1";
+
typedef struct {
rtems_id client;
bool complete;
@@ -105,13 +107,13 @@ static void test_with_timeout(void)
static void Init(rtems_task_argument arg)
{
- puts("\n\n*** TEST SPEVENTTRANSIENT 1 ***");
+ TEST_BEGIN();
test_with_request_server();
test_with_request_self();
test_with_timeout();
- puts("*** END OF TEST SPEVENTTRANSIENT 1 ***");
+ TEST_END();
rtems_test_exit(0);
}
@@ -121,6 +123,8 @@ static void Init(rtems_task_argument arg)
#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT