summaryrefslogtreecommitdiffstats
path: root/testsuites/samples
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 16:45:08 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-25 16:46:37 +0100
commit8c26e79867739e13a8699883ec1fa86127d94aaf (patch)
tree1d4bfc11903ea7e321d7badb5dd01472c47d6598 /testsuites/samples
parenttmtests/tmcontext01: Use <rtems/test.h> (diff)
downloadrtems-8c26e79867739e13a8699883ec1fa86127d94aaf.tar.bz2
tests: Produce proper begin/end messages
Diffstat (limited to 'testsuites/samples')
-rw-r--r--testsuites/samples/iostream/init.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/samples/iostream/init.cc b/testsuites/samples/iostream/init.cc
index 5133a8ddc1..610e73f03b 100644
--- a/testsuites/samples/iostream/init.cc
+++ b/testsuites/samples/iostream/init.cc
@@ -29,7 +29,7 @@
#include <stdlib.h>
-const char rtems_test_name[] = "HELLO WORLD";
+const char rtems_test_name[] = "IOSTREAM";
rtems_task Init(
rtems_task_argument ignored
@@ -38,7 +38,8 @@ rtems_task Init(
#if BSP_SMALL_MEMORY
printf ("NO STDC++. MEMORY TOO SMALL");
#else
- std::cout << "\n\n*** " << rtems_test_name << " TEST ***" << std::endl;
+ std::cout << std::endl << std::endl
+ << "*** BEGIN OF " << rtems_test_name << " TEST ***" << std::endl;
std::cout << "Hello World" << std::endl;
std::cout << "*** END OF " << rtems_test_name << " TEST ***" << std::endl;
#endif