[rtems commit] samples/iostream: Produce proper begin/end message

Sebastian Huber sebh at rtems.org
Wed Aug 9 15:15:35 UTC 2023


Module:    rtems
Branch:    master
Commit:    3d13ab866e6789fb624ff480bc205ba2ff1d7790
Changeset: http://git.rtems.org/rtems/commit/?id=3d13ab866e6789fb624ff480bc205ba2ff1d7790

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Wed Aug  9 10:36:24 2023 +0200

samples/iostream: Produce proper begin/end message

Print the full test information.

---

 testsuites/samples/iostream/init.cc | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/testsuites/samples/iostream/init.cc b/testsuites/samples/iostream/init.cc
index 22d973019b..ddd38a9d15 100644
--- a/testsuites/samples/iostream/init.cc
+++ b/testsuites/samples/iostream/init.cc
@@ -44,16 +44,17 @@
 
 #include <stdlib.h>
 
+#include <tmacros.h>
+
 const char rtems_test_name[] = "IOSTREAM";
 
 rtems_task Init(
   rtems_task_argument ignored
 )
 {
-  std::cout << std::endl << std::endl
-    << "*** BEGIN OF TEST " << rtems_test_name << " ***" << std::endl;
+  TEST_BEGIN();
   std::cout << "Hello World" << std::endl;
-  std::cout << "*** END OF TEST " << rtems_test_name << " ***" << std::endl;
-  exit( 0 );
+  TEST_END();
+  rtems_test_exit( 0 );
 }
 



More information about the vc mailing list