summaryrefslogtreecommitdiffstats
path: root/rtems-test-template/sptest_operation_from_tsr
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_operation_from_tsr
parent2011-07-20 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-testing-314d8cf0f115ae411afe6c912c9b7c299e278dee.tar.bz2
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_operation_from_tsr')
-rw-r--r--rtems-test-template/sptest_operation_from_tsr/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtems-test-template/sptest_operation_from_tsr/init.c b/rtems-test-template/sptest_operation_from_tsr/init.c
index b28fffa..078106c 100644
--- a/rtems-test-template/sptest_operation_from_tsr/init.c
+++ b/rtems-test-template/sptest_operation_from_tsr/init.c
@@ -31,7 +31,7 @@ rtems_task Init(
rtems_status_code status;
rtems_id timer;
- puts( "\n\n*** TEST @TESTNUM@ ***" );
+ puts( "\n\n*** TEST @UPPER@ ***" );
/*
* Timer used in multiple ways
@@ -68,7 +68,7 @@ rtems_task Init(
/* XXX also may be able to confirm operation actually was performed */
puts( "Operation from ISR successfully processed" );
- puts( "*** END OF TEST @TESTNUM@ ***" );
+ puts( "*** END OF TEST @UPPER@ ***" );
rtems_test_exit( 0 );
}