summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmmutex07
diff options
context:
space:
mode:
authorbjorn larsson <bjornlarsson@oarcorp.com>2014-03-21 15:35:26 -0500
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 08:06:37 +0100
commitfd46711c5410cde6f5a1913e6d2e45ddee190269 (patch)
tree9e1b46c4d7b6e98fc9434df5bad2a9b27a98fe17 /testsuites/psxtmtests/psxtmmutex07
parenttmtests: convert to test.h (diff)
downloadrtems-fd46711c5410cde6f5a1913e6d2e45ddee190269.tar.bz2
psxtmtests: Add test.h support
Diffstat (limited to 'testsuites/psxtmtests/psxtmmutex07')
-rw-r--r--testsuites/psxtmtests/psxtmmutex07/init.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/psxtmtests/psxtmmutex07/init.c b/testsuites/psxtmtests/psxtmmutex07/init.c
index 278b197de5..adee9945ec 100644
--- a/testsuites/psxtmtests/psxtmmutex07/init.c
+++ b/testsuites/psxtmtests/psxtmmutex07/init.c
@@ -17,6 +17,8 @@
#include <pthread.h>
#include "test_support.h"
+const char rtems_test_name[] = "PSXTMMUTEX 07";
+
/* forward declarations to avoid warnings */
void *POSIX_Init(void *argument);
void test_mutex_setprioceiling(void);
@@ -70,7 +72,7 @@ void *POSIX_Init(
{
int status;
- puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX07 ***" );
+ TEST_BEGIN();
/* create mutex*/
status = pthread_mutex_init( &MutexId, NULL );
rtems_test_assert( status == 0 );
@@ -83,7 +85,7 @@ void *POSIX_Init(
status = pthread_mutex_destroy( &MutexId );
rtems_test_assert( status == 0 );
- puts( "*** END OF POSIX TIME TEST PSXTMMUTEX07 ***" );
+ TEST_END();
rtems_test_exit(0);
}