summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxautoinit02/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxautoinit02/init.c')
-rw-r--r--testsuites/psxtests/psxautoinit02/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/psxtests/psxautoinit02/init.c b/testsuites/psxtests/psxautoinit02/init.c
index f67b18d4d7..967b9b86d5 100644
--- a/testsuites/psxtests/psxautoinit02/init.c
+++ b/testsuites/psxtests/psxautoinit02/init.c
@@ -15,6 +15,8 @@
#include <pthread.h>
#include <errno.h>
+const char rtems_test_name[] = "PSXAUTOINIT 2";
+
/* forward declarations to avoid warnings */
void *POSIX_Init(void *argument);
@@ -26,7 +28,7 @@ void *POSIX_Init(
pthread_cond_t cond1;
pthread_cond_t cond2;
- puts( "\n\n*** POSIX TEST -- AUTOMATIC INITIALIZAITON 02 ***" );
+ TEST_BEGIN();
cond1 = PTHREAD_COND_INITIALIZER;
cond2 = PTHREAD_COND_INITIALIZER;
@@ -42,7 +44,7 @@ void *POSIX_Init(
sc = pthread_cond_destroy( &cond1 );
fatal_posix_service_status( sc, 0, "cond destroy OK" );
- puts( "*** END OF POSIX TEST AUTOMATIC INITIALIZATION 02 ***" );
+ TEST_END();
rtems_test_exit( 0 );
return NULL; /* just so the compiler thinks we returned something */
@@ -51,6 +53,8 @@ void *POSIX_Init(
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_MAXIMUM_POSIX_THREADS 1
#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 1