summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmthread04/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtmtests/psxtmthread04/init.c')
-rw-r--r--testsuites/psxtmtests/psxtmthread04/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/psxtmtests/psxtmthread04/init.c b/testsuites/psxtmtests/psxtmthread04/init.c
index a2de986406..28e1833a8a 100644
--- a/testsuites/psxtmtests/psxtmthread04/init.c
+++ b/testsuites/psxtmtests/psxtmthread04/init.c
@@ -17,6 +17,8 @@
#include <rtems/timerdrv.h>
#include "test_support.h"
+const char rtems_test_name[] = "PSXTMTHREAD 04";
+
/* forward declarations to avoid warnings */
void benchmark_pthread_setschedparam(void);
void benchmark_pthread_getschedparam(void);
@@ -75,12 +77,12 @@ void *POSIX_Init(
)
{
- puts( "\n\n*** POSIX TIME TEST PSXTMTHREAD04 ***" );
+ TEST_BEGIN();
benchmark_pthread_getschedparam();
benchmark_pthread_setschedparam();
- puts( "*** END OF POSIX TIME TEST PSXTMTHREAD04 ***" );
+ TEST_END();
rtems_test_exit(0);
}