summaryrefslogtreecommitdiff
path: root/hello_via_task
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-17 17:38:42 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-17 17:38:42 +0000
commitdabca92eee2a796c4156d34ae11c043fcde5703c (patch)
treebcc6ed2d1629835d5c6cfbabf5476de33f5f18ff /hello_via_task
parentffb49d6bd812d60b39a85e2cbece5aa65deac480 (diff)
2009-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.shared, hello_via_task/hello.adb: Make follow standard RTEMS test output format.
Diffstat (limited to 'hello_via_task')
-rw-r--r--hello_via_task/hello.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/hello_via_task/hello.adb b/hello_via_task/hello.adb
index 3d22eaf..4b50b38 100644
--- a/hello_via_task/hello.adb
+++ b/hello_via_task/hello.adb
@@ -10,7 +10,7 @@ procedure Hello is
task body Hello_Task is
begin
- Put_Line ("GNAT/RTEMS Hello World Test");
+ Put_Line ("*** GNAT/RTEMS Hello World Test ***");
New_Line;
Put_Line ("Welcome to the World of Lady Ada");
@@ -19,7 +19,7 @@ procedure Hello is
delay 2.5;
Put_Line ("Delay Complete");
- Put_Line ("Test Complete");
+ Put_Line ("*** END OF GNAT/RTEMS Hello World Test ***");
end Hello_Task;
begin