[rtems commit] samples/iostream: Produce proper begin/end message
Sebastian Huber
sebh at rtems.org
Mon Sep 1 15:08:27 UTC 2014
Module: rtems
Branch: master
Commit: 8ae6f264af0971aa43c3e22c96b72c663aed6f47
Changeset: http://git.rtems.org/rtems/commit/?id=8ae6f264af0971aa43c3e22c96b72c663aed6f47
Author: Sebastian Huber <sebastian.huber at embedded-brains.de>
Date: Mon Sep 1 17:16:53 2014 +0200
samples/iostream: Produce proper begin/end message
---
testsuites/samples/iostream/init.cc | 4 ++--
testsuites/samples/iostream/iostream.scn | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/testsuites/samples/iostream/init.cc b/testsuites/samples/iostream/init.cc
index d987750..d80d4df 100644
--- a/testsuites/samples/iostream/init.cc
+++ b/testsuites/samples/iostream/init.cc
@@ -32,9 +32,9 @@ rtems_task Init(
)
{
std::cout << std::endl << std::endl
- << "*** BEGIN OF " << rtems_test_name << " TEST ***" << std::endl;
+ << "*** BEGIN OF TEST " << rtems_test_name << " ***" << std::endl;
std::cout << "Hello World" << std::endl;
- std::cout << "*** END OF " << rtems_test_name << " TEST ***" << std::endl;
+ std::cout << "*** END OF TEST " << rtems_test_name << " ***" << std::endl;
exit( 0 );
}
diff --git a/testsuites/samples/iostream/iostream.scn b/testsuites/samples/iostream/iostream.scn
index d9e92d8..a4eaffd 100644
--- a/testsuites/samples/iostream/iostream.scn
+++ b/testsuites/samples/iostream/iostream.scn
@@ -1,3 +1,3 @@
-*** HELLO WORLD TEST ***
+*** BEGIN OF TEST IOSTREAM ***
Hello World
-*** END OF HELLO WORLD TEST ***
+*** END OF TEST IOSTREAM ***
More information about the vc
mailing list