samples/iostream: Produce proper begin/end message

This commit is contained in:
Sebastian Huber
2014-09-01 17:16:53 +02:00
parent 5689d723a8
commit 8ae6f264af
2 changed files with 4 additions and 4 deletions

View File

@@ -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 );
}

View File

@@ -1,3 +1,3 @@
*** HELLO WORLD TEST ***
*** BEGIN OF TEST IOSTREAM ***
Hello World
*** END OF HELLO WORLD TEST ***
*** END OF TEST IOSTREAM ***