summaryrefslogtreecommitdiff
path: root/rtems-test-template/tmtest/init.c
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/tmtest/init.c
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 '')
-rw-r--r--rtems-test-template/tmtest/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtems-test-template/tmtest/init.c b/rtems-test-template/tmtest/init.c
index 29bc30e..d4a20d3 100644
--- a/rtems-test-template/tmtest/init.c
+++ b/rtems-test-template/tmtest/init.c
@@ -18,11 +18,11 @@ rtems_task Init(
rtems_task_argument argument
)
{
- puts( "\n\n*** TIME TEST @TESTNUM@ ***" );
+ puts( "\n\n*** TIME TEST @UPPER@ ***" );
/* XXX test code goes here */
- puts( "*** END OF TIME TEST @TESTNUM@ ***" );
+ puts( "*** END OF TIME TEST @UPPER@ ***" );
rtems_test_exit(0);
}