summaryrefslogblamecommitdiffstats
path: root/c/src/ada-tests/samples/hello/sptest.adb
blob: 8c29155eba1cd4d36a4cf7a813c2222913ca18d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                             
                            
                                                    
  

                                                           
                                         
  
 



                      




                   
                                            
       
                                    











                                                            
--
--  SPTEST / BODY
--
--  DESCRIPTION:
--
--  This package is the implementation of Test 1 of the RTEMS
--  Single Processor Test Suite.
--
--  DEPENDENCIES: 
--
--  
--
--  COPYRIGHT (c) 1989-2011.
--  On-Line Applications Research Corporation (OAR).
--
--  The license and distribution terms for this file may in
--  the file LICENSE in this distribution or at
--  http://www.rtems.org/license/LICENSE.
--

with TEXT_IO;

package body SPTEST is

-- 
--  INIT
--

   procedure INIT (
      ARGUMENT : in     RTEMS.TASKS.ARGUMENT
   ) is
      pragma Unreferenced(ARGUMENT);
   begin

      TEXT_IO.NEW_LINE( 2 );
      TEXT_IO.PUT_LINE( "*** HELLO WORLD TEST ***" );
      TEXT_IO.PUT_LINE( "Hello World" );
      TEXT_IO.PUT_LINE( "*** END OF HELLO WORLD TEST ***" );

      RTEMS.SHUTDOWN_EXECUTIVE( 0 );

   end INIT;

end SPTEST;