summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx14/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx14/init.c')
-rw-r--r--testsuites/psxtests/psx14/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx14/init.c b/testsuites/psxtests/psx14/init.c
index 8e968c7e99..070501f065 100644
--- a/testsuites/psxtests/psx14/init.c
+++ b/testsuites/psxtests/psx14/init.c
@@ -17,6 +17,8 @@
#include <rtems/score/objectimpl.h>
#include "tmacros.h"
+const char rtems_test_name[] = "PSX 14";
+
void *POSIX_Init(
void *argument
)
@@ -25,7 +27,7 @@ void *POSIX_Init(
char *ptr;
rtems_status_code status;
- puts( "\n\n*** POSIX TEST 14 ***" );
+ TEST_BEGIN();
ptr = rtems_object_get_name( pthread_self(), 128, name );
printf( "rtems_object_get_name returned (%s) for init thread\n", ptr );
@@ -60,7 +62,7 @@ void *POSIX_Init(
);
- puts( "*** END OF POSIX TEST 14 ***" );
+ TEST_END();
rtems_test_exit( 0 );
return NULL;