summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtmtests/psxtmmutex05
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:46:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:46:49 +0000
commit1c2ab39caf3207f21d667f79783953609190d6dd (patch)
tree6aa7afbc269c45f31ee59abcbc089d6442dd0449 /testsuites/psxtmtests/psxtmmutex05
parent2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1c2ab39caf3207f21d667f79783953609190d6dd.tar.bz2
2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxtmmutex02/init.c, psxtmmutex05/init.c, psxtmmutex06/init.c, psxtmnanosleep02/init.c, psxtmsleep02/init.c, psxtmthread01/init.c, psxtmthread03/init.c: Standardize start and end test messages.
Diffstat (limited to 'testsuites/psxtmtests/psxtmmutex05')
-rw-r--r--testsuites/psxtmtests/psxtmmutex05/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/psxtmtests/psxtmmutex05/init.c b/testsuites/psxtmtests/psxtmmutex05/init.c
index 05caa310d6..28a8b3e381 100644
--- a/testsuites/psxtmtests/psxtmmutex05/init.c
+++ b/testsuites/psxtmtests/psxtmmutex05/init.c
@@ -42,7 +42,7 @@ void *POSIX_Init(
pthread_t threadId;
long end_time;
- puts( "\n\n*** POSIX TIME TEST MUTEX 05 ***" );
+ puts( "\n\n*** POSIX TIME TEST PSXTMMUTEX05 ***" );
status = pthread_create( &threadId, NULL, Blocker, NULL );
rtems_test_assert( status == 0 );
@@ -73,14 +73,14 @@ void *POSIX_Init(
rtems_test_assert( status == 0 );
put_time(
- "pthread_mutex_unlock (no preemption)",
+ "pthread_mutex_unlock - unblocking, no preemption",
end_time,
1,
0,
0
);
- puts( "*** END OF POSIX TIME TEST MUTEX 05 ***" );
+ puts( "*** END OF POSIX TIME TEST PSXTMMUTEX05 ***" );
rtems_test_exit( 0 );
return NULL;