summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx10/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx10/init.c')
-rw-r--r--testsuites/psxtests/psx10/init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx10/init.c b/testsuites/psxtests/psx10/init.c
index daf14135f2..a37e14efba 100644
--- a/testsuites/psxtests/psx10/init.c
+++ b/testsuites/psxtests/psx10/init.c
@@ -15,6 +15,7 @@
#include "system.h"
#include <sched.h>
+const char rtems_test_name[] = "PSX 10";
void *POSIX_Init(
void *argument
@@ -27,7 +28,7 @@ void *POSIX_Init(
pthread_cond_t cond;
struct timespec timeout;
- puts( "\n\n*** POSIX TEST 10 ***" );
+ TEST_BEGIN();
puts( "Init: pthread_condattr_init" );
status = pthread_condattr_init( &attr );
@@ -311,7 +312,7 @@ void *POSIX_Init(
puts( "Init: sleep - switch to Task_3" );
sleep( 1 );
- puts( "*** END OF POSIX TEST 10 ***" );
+ TEST_END();
rtems_test_exit( 0 );
return NULL; /* just so the compiler thinks we returned something */