summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sperror01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sperror01/init.c')
-rw-r--r--testsuites/sptests/sperror01/init.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/testsuites/sptests/sperror01/init.c b/testsuites/sptests/sperror01/init.c
index cdc17d3926..1f3e3f97dc 100644
--- a/testsuites/sptests/sperror01/init.c
+++ b/testsuites/sptests/sperror01/init.c
@@ -16,6 +16,8 @@
#include "rtems/error.h"
#include <errno.h>
+const char rtems_test_name[] = "SPERROR 1";
+
/* 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 - 01 ***" );
+ TEST_BEGIN();
errno = -1;
rtems_error(RTEMS_ERROR_ERRNO, "Dummy: Resources unavailable");
@@ -51,6 +53,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