source: rtems/c/src/ada-tests/sptests/sp19/sptest.adb @ f435621b

4.104.114.84.95
Last change on this file since f435621b was f435621b, checked in by Joel Sherrill <joel.sherrill@…>, on 08/26/02 at 17:20:36

2002-08-26 Joel Sherrill <joel@…>

  • sptests/sp19/sptest.adb: Modified to follow pattern of SP01 even though this test is not supported.
  • sptests/sp19/sp19.adb: New file.
  • Property mode set to 100644
File size: 962 bytes
Line 
1--
2--  SPTEST / BODY
3--
4--  DESCRIPTION:
5--
6--  This package is the implementation of Test 19 of the RTEMS
7--  Single Processor Test Suite.
8--
9--  DEPENDENCIES:
10--
11-- 
12--
13--  COPYRIGHT (c) 1989-1997.
14--  On-Line Applications Research Corporation (OAR).
15--  Copyright assigned to U.S. Government, 1994.
16--
17--  The license and distribution terms for this file may in
18--  the file LICENSE in this distribution or at
19--  http://www.OARcorp.com/rtems/license.html.
20--
21--  $Id$
22--
23
24with INTERFACES; use INTERFACES;
25with RTEMS;
26with TEST_SUPPORT;
27with TEXT_IO;
28
29package body SPTEST is
30
31--PAGE
32--
33--  INIT
34--
35
36   procedure INIT (
37      ARGUMENT : in     RTEMS.TASK_ARGUMENT
38   ) is
39      TIME   : RTEMS.TIME_OF_DAY;
40      STATUS : RTEMS.STATUS_CODES;
41   begin
42
43      TEXT_IO.NEW_LINE( 2 );
44      TEXT_IO.PUT_LINE( "*** TEST 19***" );
45      TEXT_IO.PUT_LINE( "Not currently implemented" );
46      TEXT_IO.PUT_LINE( "*** END OF TEST 19***" );
47
48   end INIT;
49
50end SPTEST;
Note: See TracBrowser for help on using the repository browser.