summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmsleep02/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtmtests/psxtmsleep02/init.c')
-rw-r--r--testsuites/psxtmtests/psxtmsleep02/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/psxtmtests/psxtmsleep02/init.c b/testsuites/psxtmtests/psxtmsleep02/init.c
index 3db468a8dc..9889175308 100644
--- a/testsuites/psxtmtests/psxtmsleep02/init.c
+++ b/testsuites/psxtmtests/psxtmsleep02/init.c
@@ -17,6 +17,8 @@
#include <pthread.h>
+const char rtems_test_name[] = "PSXTMSLEEP 02";
+
/* forward declarations to avoid warnings */
void *POSIX_Init(void *argument);
void *Middle(void *argument);
@@ -38,7 +40,7 @@ void *Low(
0
);
- puts( "*** END OF POSIX TIME TEST PSXTMSLEEP02 ***" );
+ TEST_END();
rtems_test_exit( 0 );
return NULL;
@@ -60,7 +62,7 @@ void *POSIX_Init(
int status;
pthread_t threadId;
- puts( "\n\n*** POSIX TIME TEST PSXTMSLEEP02 ***" );
+ TEST_BEGIN();
for ( i=0 ; i < OPERATION_COUNT - 1 ; i++ ) {
status = pthread_create( &threadId, NULL, Middle, NULL );