forked from Imagelibrary/rtems
samples/iostream: Produce proper begin/end message
This commit is contained in:
@@ -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 );
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
*** HELLO WORLD TEST ***
|
||||
*** BEGIN OF TEST IOSTREAM ***
|
||||
Hello World
|
||||
*** END OF HELLO WORLD TEST ***
|
||||
*** END OF TEST IOSTREAM ***
|
||||
|
||||
Reference in New Issue
Block a user