summaryrefslogtreecommitdiffstats
path: root/testsuites/ada/samples/hello/sptest.adb
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-01 08:51:17 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-01 09:52:41 +0100
commitf6c9334d9b78d8a9791b2ba3ab401c43fb6eb39e (patch)
tree2a06c91d9977552a5a42292fb9cbd8094b7f6485 /testsuites/ada/samples/hello/sptest.adb
parentada: Delete superfluous CONFIGURE_SPTEST (diff)
downloadrtems-f6c9334d9b78d8a9791b2ba3ab401c43fb6eb39e.tar.bz2
ada: Add standard test begin/end message
Diffstat (limited to '')
-rw-r--r--testsuites/ada/samples/hello/sptest.adb5
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuites/ada/samples/hello/sptest.adb b/testsuites/ada/samples/hello/sptest.adb
index 8c29155eba..a0bb90a19e 100644
--- a/testsuites/ada/samples/hello/sptest.adb
+++ b/testsuites/ada/samples/hello/sptest.adb
@@ -19,6 +19,7 @@
--
with TEXT_IO;
+with TEST_SUPPORT;
package body SPTEST is
@@ -33,9 +34,9 @@ package body SPTEST is
begin
TEXT_IO.NEW_LINE( 2 );
- TEXT_IO.PUT_LINE( "*** HELLO WORLD TEST ***" );
+ TEST_SUPPORT.ADA_TEST_BEGIN;
TEXT_IO.PUT_LINE( "Hello World" );
- TEXT_IO.PUT_LINE( "*** END OF HELLO WORLD TEST ***" );
+ TEST_SUPPORT.ADA_TEST_END;
RTEMS.SHUTDOWN_EXECUTIVE( 0 );