summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spassoc01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/spassoc01/init.c')
-rw-r--r--testsuites/sptests/spassoc01/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/spassoc01/init.c b/testsuites/sptests/spassoc01/init.c
index 40a74fc9dc..2cd14f9297 100644
--- a/testsuites/sptests/spassoc01/init.c
+++ b/testsuites/sptests/spassoc01/init.c
@@ -17,6 +17,8 @@
#include <stdio.h>
#include <rtems/assoc.h>
+const char rtems_test_name[] = "SPASSOC 1";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
@@ -64,7 +66,7 @@ rtems_task Init(
)
{
name = malloc(40);
- puts( "\n\n*** TEST ASSOC ROUTINES - 1 ***" );
+ TEST_BEGIN();
puts( "Init - get local by name -- OK" );
local = rtems_assoc_local_by_name( assoc_table, "zero" );
@@ -215,7 +217,7 @@ rtems_task Init(
free( name );
- puts( "*** END OF TEST ASSOC ROUTINES - 1 ***" );
+ TEST_END();
rtems_test_exit(0);
}
@@ -226,6 +228,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