summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sperror02/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sperror02/init.c')
-rw-r--r--testsuites/sptests/sperror02/init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/sptests/sperror02/init.c b/testsuites/sptests/sperror02/init.c
index 22f24fbf33..d4f74f58d2 100644
--- a/testsuites/sptests/sperror02/init.c
+++ b/testsuites/sptests/sperror02/init.c
@@ -16,6 +16,8 @@
#include <errno.h>
#include <rtems/error.h>
+const char rtems_test_name[] = "SPERROR 2";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
@@ -23,7 +25,7 @@ rtems_task Init(
rtems_task_argument argument
)
{
- puts( "\n\n*** TEST Tests for error reporting routines - 02 ***" );
+ TEST_BEGIN();
errno = ENOMEM;
rtems_error(
@@ -42,6 +44,8 @@ rtems_task Init(
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT