summaryrefslogtreecommitdiff
path: root/rtems-test-template/psxtmtest_unblocking_nopreempt
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:42:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:42:25 +0000
commit314d8cf0f115ae411afe6c912c9b7c299e278dee (patch)
treea955cb74a196db66b2471bc5c70d154fa483c508 /rtems-test-template/psxtmtest_unblocking_nopreempt
parent453b502e45aafcef80a8be3352e95accd718b040 (diff)
2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxtest/init.c, psxtest_with_thread/init.c, psxtmtest_blocking/init.c, psxtmtest_single/init.c, psxtmtest_unblocking_nopreempt/init.c, psxtmtest_unblocking_preempt/init.c, smptest/init.c, sptest/init.c, sptest_operation_from_tsr/init.c, sptest_with_task/init.c, tmtest/init.c: Standardize start and end messages.
Diffstat (limited to 'rtems-test-template/psxtmtest_unblocking_nopreempt')
-rw-r--r--rtems-test-template/psxtmtest_unblocking_nopreempt/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c b/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c
index 7487108..087f88b 100644
--- a/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c
+++ b/rtems-test-template/psxtmtest_unblocking_nopreempt/init.c
@@ -42,7 +42,7 @@ void *POSIX_Init(
pthread_t threadId;
long end_time;
- puts( "\n\n*** POSIX TIME TEST XXX @TESTNUM@ ***" );
+ puts( "\n\n*** POSIX TIME TEST @UPPER@ ***" );
status = pthread_create( &threadId, NULL, Blocker, NULL );
rtems_test_assert( status == 0 );
@@ -80,7 +80,7 @@ void *POSIX_Init(
0
);
- puts( "*** END OF POSIX TIME TEST XXX @TESTNUM@ ***" );
+ puts( "*** END OF POSIX TIME TEST @UPPER@ ***" );
rtems_test_exit( 0 );
return NULL;