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