summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-02 22:37:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-06-02 22:37:28 +0000
commit7f79b6737dc0c1f135080fada9b7883736069b0a (patch)
treeaeee0199153de369626bf61269c381656b361c54 /c/src/ada-tests
parentremoved configuration table definition in Ada (diff)
downloadrtems-7f79b6737dc0c1f135080fada9b7883736069b0a.tar.bz2
readded body for "main" procedures
Diffstat (limited to 'c/src/ada-tests')
-rw-r--r--c/src/ada-tests/sptests/sp01/sp01.adb31
-rw-r--r--c/src/ada-tests/sptests/sp02/sp02.adb31
-rw-r--r--c/src/ada-tests/sptests/sp02/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp03/sp03.adb31
-rw-r--r--c/src/ada-tests/sptests/sp03/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp04/sp04.adb31
-rw-r--r--c/src/ada-tests/sptests/sp04/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp05/sp05.adb31
-rw-r--r--c/src/ada-tests/sptests/sp05/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp06/sp06.adb31
-rw-r--r--c/src/ada-tests/sptests/sp06/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp07/sp07.adb31
-rw-r--r--c/src/ada-tests/sptests/sp07/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp08/sp08.adb31
-rw-r--r--c/src/ada-tests/sptests/sp08/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp09/sp09.adb31
-rw-r--r--c/src/ada-tests/sptests/sp09/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp11/sp11.adb31
-rw-r--r--c/src/ada-tests/sptests/sp11/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp12/sp12.adb31
-rw-r--r--c/src/ada-tests/sptests/sp12/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp13/sp13.adb31
-rw-r--r--c/src/ada-tests/sptests/sp13/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp14/sp14.adb31
-rw-r--r--c/src/ada-tests/sptests/sp14/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp15/sp15.adb31
-rw-r--r--c/src/ada-tests/sptests/sp15/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp16/sp16.adb31
-rw-r--r--c/src/ada-tests/sptests/sp16/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp17/sp17.adb31
-rw-r--r--c/src/ada-tests/sptests/sp17/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp19/sp19.adb31
-rw-r--r--c/src/ada-tests/sptests/sp19/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp20/sp20.adb31
-rw-r--r--c/src/ada-tests/sptests/sp20/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp21/sp21.adb31
-rw-r--r--c/src/ada-tests/sptests/sp21/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp22/sp22.adb31
-rw-r--r--c/src/ada-tests/sptests/sp22/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp23/sp23.adb31
-rw-r--r--c/src/ada-tests/sptests/sp23/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp24/sp24.adb31
-rw-r--r--c/src/ada-tests/sptests/sp24/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/sp25/sp25.adb31
-rw-r--r--c/src/ada-tests/sptests/sp25/sptest.ads1
-rw-r--r--c/src/ada-tests/sptests/spsize/spsize.adb31
-rw-r--r--c/src/ada-tests/sptests/spsize/sptest.ads1
47 files changed, 744 insertions, 23 deletions
diff --git a/c/src/ada-tests/sptests/sp01/sp01.adb b/c/src/ada-tests/sptests/sp01/sp01.adb
index e69de29bb2..9c512ca621 100644
--- a/c/src/ada-tests/sptests/sp01/sp01.adb
+++ b/c/src/ada-tests/sptests/sp01/sp01.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP01 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP01 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP01;
+
diff --git a/c/src/ada-tests/sptests/sp02/sp02.adb b/c/src/ada-tests/sptests/sp02/sp02.adb
index e69de29bb2..1df409b50a 100644
--- a/c/src/ada-tests/sptests/sp02/sp02.adb
+++ b/c/src/ada-tests/sptests/sp02/sp02.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP02 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP02 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP02;
+
diff --git a/c/src/ada-tests/sptests/sp02/sptest.ads b/c/src/ada-tests/sptests/sp02/sptest.ads
index 6d173635f7..2d5141f540 100644
--- a/c/src/ada-tests/sptests/sp02/sptest.ads
+++ b/c/src/ada-tests/sptests/sp02/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp03/sp03.adb b/c/src/ada-tests/sptests/sp03/sp03.adb
index e69de29bb2..5c4bb85428 100644
--- a/c/src/ada-tests/sptests/sp03/sp03.adb
+++ b/c/src/ada-tests/sptests/sp03/sp03.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP03 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP03 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP03;
+
diff --git a/c/src/ada-tests/sptests/sp03/sptest.ads b/c/src/ada-tests/sptests/sp03/sptest.ads
index abc3f08d1f..fda2add5e2 100644
--- a/c/src/ada-tests/sptests/sp03/sptest.ads
+++ b/c/src/ada-tests/sptests/sp03/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp04/sp04.adb b/c/src/ada-tests/sptests/sp04/sp04.adb
index e69de29bb2..a3d14d8022 100644
--- a/c/src/ada-tests/sptests/sp04/sp04.adb
+++ b/c/src/ada-tests/sptests/sp04/sp04.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP04 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP04 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP04;
+
diff --git a/c/src/ada-tests/sptests/sp04/sptest.ads b/c/src/ada-tests/sptests/sp04/sptest.ads
index fe3070a0ba..f0b6d4ece7 100644
--- a/c/src/ada-tests/sptests/sp04/sptest.ads
+++ b/c/src/ada-tests/sptests/sp04/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp05/sp05.adb b/c/src/ada-tests/sptests/sp05/sp05.adb
index e69de29bb2..b094f6f290 100644
--- a/c/src/ada-tests/sptests/sp05/sp05.adb
+++ b/c/src/ada-tests/sptests/sp05/sp05.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP05 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP05 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP05;
+
diff --git a/c/src/ada-tests/sptests/sp05/sptest.ads b/c/src/ada-tests/sptests/sp05/sptest.ads
index 921b4ab01e..74b2e956bc 100644
--- a/c/src/ada-tests/sptests/sp05/sptest.ads
+++ b/c/src/ada-tests/sptests/sp05/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp06/sp06.adb b/c/src/ada-tests/sptests/sp06/sp06.adb
index e69de29bb2..3826c70f6d 100644
--- a/c/src/ada-tests/sptests/sp06/sp06.adb
+++ b/c/src/ada-tests/sptests/sp06/sp06.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP06 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP06 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP06;
+
diff --git a/c/src/ada-tests/sptests/sp06/sptest.ads b/c/src/ada-tests/sptests/sp06/sptest.ads
index 16b83304e4..53d4825ec4 100644
--- a/c/src/ada-tests/sptests/sp06/sptest.ads
+++ b/c/src/ada-tests/sptests/sp06/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp07/sp07.adb b/c/src/ada-tests/sptests/sp07/sp07.adb
index e69de29bb2..3afe615f9c 100644
--- a/c/src/ada-tests/sptests/sp07/sp07.adb
+++ b/c/src/ada-tests/sptests/sp07/sp07.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP07 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP07 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP07;
+
diff --git a/c/src/ada-tests/sptests/sp07/sptest.ads b/c/src/ada-tests/sptests/sp07/sptest.ads
index 50c87ed86a..040e91a65d 100644
--- a/c/src/ada-tests/sptests/sp07/sptest.ads
+++ b/c/src/ada-tests/sptests/sp07/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp08/sp08.adb b/c/src/ada-tests/sptests/sp08/sp08.adb
index e69de29bb2..907d8ab27b 100644
--- a/c/src/ada-tests/sptests/sp08/sp08.adb
+++ b/c/src/ada-tests/sptests/sp08/sp08.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP08 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP08 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP08;
+
diff --git a/c/src/ada-tests/sptests/sp08/sptest.ads b/c/src/ada-tests/sptests/sp08/sptest.ads
index 59589f592e..c9f0327172 100644
--- a/c/src/ada-tests/sptests/sp08/sptest.ads
+++ b/c/src/ada-tests/sptests/sp08/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp09/sp09.adb b/c/src/ada-tests/sptests/sp09/sp09.adb
index e69de29bb2..0583db8f9c 100644
--- a/c/src/ada-tests/sptests/sp09/sp09.adb
+++ b/c/src/ada-tests/sptests/sp09/sp09.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP09 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP09 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP09;
+
diff --git a/c/src/ada-tests/sptests/sp09/sptest.ads b/c/src/ada-tests/sptests/sp09/sptest.ads
index f767e48bce..d5c31bcd08 100644
--- a/c/src/ada-tests/sptests/sp09/sptest.ads
+++ b/c/src/ada-tests/sptests/sp09/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
with SYSTEM;
with System.Storage_Elements;
diff --git a/c/src/ada-tests/sptests/sp11/sp11.adb b/c/src/ada-tests/sptests/sp11/sp11.adb
index e69de29bb2..2275108193 100644
--- a/c/src/ada-tests/sptests/sp11/sp11.adb
+++ b/c/src/ada-tests/sptests/sp11/sp11.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP11 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP11 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP11;
+
diff --git a/c/src/ada-tests/sptests/sp11/sptest.ads b/c/src/ada-tests/sptests/sp11/sptest.ads
index 825bef3ba6..c5527218f0 100644
--- a/c/src/ada-tests/sptests/sp11/sptest.ads
+++ b/c/src/ada-tests/sptests/sp11/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp12/sp12.adb b/c/src/ada-tests/sptests/sp12/sp12.adb
index e69de29bb2..a7817110c4 100644
--- a/c/src/ada-tests/sptests/sp12/sp12.adb
+++ b/c/src/ada-tests/sptests/sp12/sp12.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP12 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP12 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP12;
+
diff --git a/c/src/ada-tests/sptests/sp12/sptest.ads b/c/src/ada-tests/sptests/sp12/sptest.ads
index 52030f997b..8d75953069 100644
--- a/c/src/ada-tests/sptests/sp12/sptest.ads
+++ b/c/src/ada-tests/sptests/sp12/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp13/sp13.adb b/c/src/ada-tests/sptests/sp13/sp13.adb
index e69de29bb2..790ab10086 100644
--- a/c/src/ada-tests/sptests/sp13/sp13.adb
+++ b/c/src/ada-tests/sptests/sp13/sp13.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP13 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP13 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP13;
+
diff --git a/c/src/ada-tests/sptests/sp13/sptest.ads b/c/src/ada-tests/sptests/sp13/sptest.ads
index 57838b5f86..bb7ba60d55 100644
--- a/c/src/ada-tests/sptests/sp13/sptest.ads
+++ b/c/src/ada-tests/sptests/sp13/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp14/sp14.adb b/c/src/ada-tests/sptests/sp14/sp14.adb
index e69de29bb2..b394a84dc6 100644
--- a/c/src/ada-tests/sptests/sp14/sp14.adb
+++ b/c/src/ada-tests/sptests/sp14/sp14.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP14 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP14 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP14;
+
diff --git a/c/src/ada-tests/sptests/sp14/sptest.ads b/c/src/ada-tests/sptests/sp14/sptest.ads
index 32673f3322..6b0a804600 100644
--- a/c/src/ada-tests/sptests/sp14/sptest.ads
+++ b/c/src/ada-tests/sptests/sp14/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp15/sp15.adb b/c/src/ada-tests/sptests/sp15/sp15.adb
index e69de29bb2..e9ec5f162b 100644
--- a/c/src/ada-tests/sptests/sp15/sp15.adb
+++ b/c/src/ada-tests/sptests/sp15/sp15.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP15 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP15 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP15;
+
diff --git a/c/src/ada-tests/sptests/sp15/sptest.ads b/c/src/ada-tests/sptests/sp15/sptest.ads
index d6b3abaa72..ea22067451 100644
--- a/c/src/ada-tests/sptests/sp15/sptest.ads
+++ b/c/src/ada-tests/sptests/sp15/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp16/sp16.adb b/c/src/ada-tests/sptests/sp16/sp16.adb
index e69de29bb2..7be8360815 100644
--- a/c/src/ada-tests/sptests/sp16/sp16.adb
+++ b/c/src/ada-tests/sptests/sp16/sp16.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP16 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP16 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP16;
+
diff --git a/c/src/ada-tests/sptests/sp16/sptest.ads b/c/src/ada-tests/sptests/sp16/sptest.ads
index 37b52e398b..a9a8df0881 100644
--- a/c/src/ada-tests/sptests/sp16/sptest.ads
+++ b/c/src/ada-tests/sptests/sp16/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp17/sp17.adb b/c/src/ada-tests/sptests/sp17/sp17.adb
index e69de29bb2..2d9cf5fdb6 100644
--- a/c/src/ada-tests/sptests/sp17/sp17.adb
+++ b/c/src/ada-tests/sptests/sp17/sp17.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP17 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP17 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP17;
+
diff --git a/c/src/ada-tests/sptests/sp17/sptest.ads b/c/src/ada-tests/sptests/sp17/sptest.ads
index 10b841f843..1cef71e42d 100644
--- a/c/src/ada-tests/sptests/sp17/sptest.ads
+++ b/c/src/ada-tests/sptests/sp17/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp19/sp19.adb b/c/src/ada-tests/sptests/sp19/sp19.adb
index e69de29bb2..035a97d926 100644
--- a/c/src/ada-tests/sptests/sp19/sp19.adb
+++ b/c/src/ada-tests/sptests/sp19/sp19.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP19 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP19 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP19;
+
diff --git a/c/src/ada-tests/sptests/sp19/sptest.ads b/c/src/ada-tests/sptests/sp19/sptest.ads
index b9a28c359e..92d65ffc3d 100644
--- a/c/src/ada-tests/sptests/sp19/sptest.ads
+++ b/c/src/ada-tests/sptests/sp19/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp20/sp20.adb b/c/src/ada-tests/sptests/sp20/sp20.adb
index e69de29bb2..28ceaa2f10 100644
--- a/c/src/ada-tests/sptests/sp20/sp20.adb
+++ b/c/src/ada-tests/sptests/sp20/sp20.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP20 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP20 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP20;
+
diff --git a/c/src/ada-tests/sptests/sp20/sptest.ads b/c/src/ada-tests/sptests/sp20/sptest.ads
index 5ff74aaeca..bfc62ad772 100644
--- a/c/src/ada-tests/sptests/sp20/sptest.ads
+++ b/c/src/ada-tests/sptests/sp20/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp21/sp21.adb b/c/src/ada-tests/sptests/sp21/sp21.adb
index e69de29bb2..3663ca92c2 100644
--- a/c/src/ada-tests/sptests/sp21/sp21.adb
+++ b/c/src/ada-tests/sptests/sp21/sp21.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP21 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP21 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP21;
+
diff --git a/c/src/ada-tests/sptests/sp21/sptest.ads b/c/src/ada-tests/sptests/sp21/sptest.ads
index 8496a1cfd8..23745f5359 100644
--- a/c/src/ada-tests/sptests/sp21/sptest.ads
+++ b/c/src/ada-tests/sptests/sp21/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
with STUB_DRIVER;
diff --git a/c/src/ada-tests/sptests/sp22/sp22.adb b/c/src/ada-tests/sptests/sp22/sp22.adb
index e69de29bb2..9b3ba0f50c 100644
--- a/c/src/ada-tests/sptests/sp22/sp22.adb
+++ b/c/src/ada-tests/sptests/sp22/sp22.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP22 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP22 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP22;
+
diff --git a/c/src/ada-tests/sptests/sp22/sptest.ads b/c/src/ada-tests/sptests/sp22/sptest.ads
index 3515cf1412..9401ce1cc0 100644
--- a/c/src/ada-tests/sptests/sp22/sptest.ads
+++ b/c/src/ada-tests/sptests/sp22/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp23/sp23.adb b/c/src/ada-tests/sptests/sp23/sp23.adb
index e69de29bb2..809579c39d 100644
--- a/c/src/ada-tests/sptests/sp23/sp23.adb
+++ b/c/src/ada-tests/sptests/sp23/sp23.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP23 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP23 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP23;
+
diff --git a/c/src/ada-tests/sptests/sp23/sptest.ads b/c/src/ada-tests/sptests/sp23/sptest.ads
index 47f5148dab..9c72b05568 100644
--- a/c/src/ada-tests/sptests/sp23/sptest.ads
+++ b/c/src/ada-tests/sptests/sp23/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
with SYSTEM;
with System.Storage_Elements;
diff --git a/c/src/ada-tests/sptests/sp24/sp24.adb b/c/src/ada-tests/sptests/sp24/sp24.adb
index e69de29bb2..04835b6bb5 100644
--- a/c/src/ada-tests/sptests/sp24/sp24.adb
+++ b/c/src/ada-tests/sptests/sp24/sp24.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP24 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP24 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP24;
+
diff --git a/c/src/ada-tests/sptests/sp24/sptest.ads b/c/src/ada-tests/sptests/sp24/sptest.ads
index 03169ff4f2..f664be5bd8 100644
--- a/c/src/ada-tests/sptests/sp24/sptest.ads
+++ b/c/src/ada-tests/sptests/sp24/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/sp25/sp25.adb b/c/src/ada-tests/sptests/sp25/sp25.adb
index e69de29bb2..197eac1bed 100644
--- a/c/src/ada-tests/sptests/sp25/sp25.adb
+++ b/c/src/ada-tests/sptests/sp25/sp25.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SP25 of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SP25 is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SP25;
+
diff --git a/c/src/ada-tests/sptests/sp25/sptest.ads b/c/src/ada-tests/sptests/sp25/sptest.ads
index 88aacddb22..516421526f 100644
--- a/c/src/ada-tests/sptests/sp25/sptest.ads
+++ b/c/src/ada-tests/sptests/sp25/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is
diff --git a/c/src/ada-tests/sptests/spsize/spsize.adb b/c/src/ada-tests/sptests/spsize/spsize.adb
index e69de29bb2..773b774bd5 100644
--- a/c/src/ada-tests/sptests/spsize/spsize.adb
+++ b/c/src/ada-tests/sptests/spsize/spsize.adb
@@ -0,0 +1,31 @@
+--
+-- MAIN / BODY
+--
+-- DESCRIPTION:
+--
+-- This is the entry point for Test SPsize of the Single Processor Test Suite.
+--
+-- DEPENDENCIES:
+--
+--
+--
+-- COPYRIGHT (c) 1989-1997.
+-- On-Line Applications Research Corporation (OAR).
+-- Copyright assigned to U.S. Government, 1994.
+--
+-- The license and distribution terms for this file may in
+-- the file LICENSE in this distribution or at
+-- http://www.OARcorp.com/rtems/license.html.
+--
+-- $Id$
+--
+
+with SPTEST;
+
+procedure SPsize is
+begin
+
+ SPTEST.INIT( 0 );
+
+end SPsize;
+
diff --git a/c/src/ada-tests/sptests/spsize/sptest.ads b/c/src/ada-tests/sptests/spsize/sptest.ads
index bf0ed78dfb..312c7e9ead 100644
--- a/c/src/ada-tests/sptests/spsize/sptest.ads
+++ b/c/src/ada-tests/sptests/spsize/sptest.ads
@@ -21,7 +21,6 @@
-- $Id$
--
-with CLOCK_DRIVER;
with RTEMS;
package SPTEST is