summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests/sptests/sp19
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/ada-tests/sptests/sp19')
-rw-r--r--c/src/ada-tests/sptests/sp19/README23
-rw-r--r--c/src/ada-tests/sptests/sp19/config.h33
-rw-r--r--c/src/ada-tests/sptests/sp19/sp19.adb57
-rw-r--r--c/src/ada-tests/sptests/sp19/sp19.scn56
-rw-r--r--c/src/ada-tests/sptests/sp19/sptest.ads102
5 files changed, 0 insertions, 271 deletions
diff --git a/c/src/ada-tests/sptests/sp19/README b/c/src/ada-tests/sptests/sp19/README
deleted file mode 100644
index 07d60c5bc4..0000000000
--- a/c/src/ada-tests/sptests/sp19/README
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# $Id$
-#
-
-This is a "problem" test in Ada versus the C equivalent. In C,
-we used macros to :
-
- + declare a LOT of local integer and floating point variables
- + load them with values
- + check them at certain times
- + to avoid floating point operations on CPUs w/o hardware support
-
-The macros are not equivalent to subprograms doing the same thing.
-We are trying to insure that the register set is fully utilized and
-checking that it survives context switches. If the routines are
-subprograms, then calling conventions and scoping rules apply. Thus
-the variables do not exist throughout the entire life of the task
-as in the C test.
-
-It seems to point out that although the conditional compilation
-and macro capabilities of C are often abused, they do provide
-capabilities which are difficult if not impossible to mimic entirely
-with subprograms.
diff --git a/c/src/ada-tests/sptests/sp19/config.h b/c/src/ada-tests/sptests/sp19/config.h
deleted file mode 100644
index bfb614cd4e..0000000000
--- a/c/src/ada-tests/sptests/sp19/config.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/* config.h
- *
- * This include file defines the Configuration Table for this test.
- *
- * 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$
- */
-
-
-/* configuration information */
-
-#define CONFIGURE_SPTEST
-
-#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
-#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
-
-#define CONFIGURE_POSIX_INIT_THREAD_TABLE
-
-#define CONFIGURE_MAXIMUM_POSIX_THREADS 10
-#define CONFIGURE_MAXIMUM_POSIX_KEYS 10
-#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 20
-#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 10
-
-#include <confdefs.h>
-
-/* end of include file */
diff --git a/c/src/ada-tests/sptests/sp19/sp19.adb b/c/src/ada-tests/sptests/sp19/sp19.adb
deleted file mode 100644
index 61a5107332..0000000000
--- a/c/src/ada-tests/sptests/sp19/sp19.adb
+++ /dev/null
@@ -1,57 +0,0 @@
---
--- 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 RTEMS;
-with SPTEST;
-with TEST_SUPPORT;
-
-procedure SP19 is
- INIT_ID : RTEMS.ID;
- STATUS : RTEMS.STATUS_CODES;
-begin
-
- RTEMS.TASK_CREATE(
- RTEMS.BUILD_NAME( 'I', 'N', 'I', 'T' ),
- 1,
- RTEMS.MINIMUM_STACK_SIZE,
- RTEMS.NO_PREEMPT,
- RTEMS.FLOATING_POINT,
- INIT_ID,
- STATUS
- );
- TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_CREATE OF INIT" );
-
-
- RTEMS.TASK_START(
- INIT_ID,
- SPTEST.INIT'ACCESS,
- 0,
- STATUS
- );
- TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "TASK_START OF INIT" );
-
- loop
- delay 120.0;
- end loop;
-
-end SP19;
-
diff --git a/c/src/ada-tests/sptests/sp19/sp19.scn b/c/src/ada-tests/sptests/sp19/sp19.scn
deleted file mode 100644
index 8b7feadb37..0000000000
--- a/c/src/ada-tests/sptests/sp19/sp19.scn
+++ /dev/null
@@ -1,56 +0,0 @@
-*** TEST 19 ***
-FP1 - integer base = ( 16#6000#)
-FP1 - float base = ( 6.00060E+03)
-FP1 - integer base = ( 16#6000#)
-FP1 - float base = ( 6.00060E+03)
-TA1 - integer base = ( 16#1000#)
-TA1 - clock_get - 9: 0: 0 12/31/1988
-TA2 - integer base = ( 16#2000#)
-TA2 - clock_get - 9: 0: 0 12/31/1988
-TA3 - integer base = ( 16#3000#)
-TA3 - clock_get - 9: 0: 0 12/31/1988
-TA4 - integer base = ( 16#4000#)
-TA4 - float base = ( 4.00040E+03)
-TA4 - clock_get - 9: 0: 0 12/31/1988
-TA5 - integer base = ( 16#5000#)
-TA5 - float base = ( 5.00050E+03)
-TA5 - clock_get - 9: 0: 0 12/31/1988
-TA4 - clock_get - 9: 0: 1 12/31/1988
-TA5 - clock_get - 9: 0: 1 12/31/1988
-TA4 - clock_get - 9: 0: 2 12/31/1988
-TA5 - clock_get - 9: 0: 2 12/31/1988
-TA4 - clock_get - 9: 0: 3 12/31/1988
-TA5 - clock_get - 9: 0: 3 12/31/1988
-TA4 - clock_get - 9: 0: 4 12/31/1988
-TA5 - clock_get - 9: 0: 4 12/31/1988
-TA1 - clock_get - 9: 0: 5 12/31/1988
-TA4 - clock_get - 9: 0: 5 12/31/1988
-TA5 - clock_get - 9: 0: 5 12/31/1988
-TA4 - clock_get - 9: 0: 6 12/31/1988
-TA5 - clock_get - 9: 0: 6 12/31/1988
-TA4 - clock_get - 9: 0: 7 12/31/1988
-TA5 - clock_get - 9: 0: 7 12/31/1988
-TA4 - clock_get - 9: 0: 8 12/31/1988
-TA5 - clock_get - 9: 0: 8 12/31/1988
-TA4 - clock_get - 9: 0: 9 12/31/1988
-TA5 - clock_get - 9: 0: 9 12/31/1988
-TA2 - clock_get - 9: 0:10 12/31/1988
-TA1 - clock_get - 9: 0:10 12/31/1988
-TA4 - clock_get - 9: 0:10 12/31/1988
-TA5 - clock_get - 9: 0:10 12/31/1988
-TA4 - clock_get - 9: 0:11 12/31/1988
-TA5 - clock_get - 9: 0:11 12/31/1988
-TA4 - clock_get - 9: 0:12 12/31/1988
-TA5 - clock_get - 9: 0:12 12/31/1988
-TA4 - clock_get - 9: 0:13 12/31/1988
-TA5 - clock_get - 9: 0:13 12/31/1988
-TA4 - clock_get - 9: 0:14 12/31/1988
-TA5 - clock_get - 9: 0:14 12/31/1988
-TA1 - clock_get - 9: 0:15 12/31/1988
-TA3 - clock_get - 9: 0:15 12/31/1988
-TA5 - clock_get - 9: 0:15 12/31/1988
-TA4 - clock_get - 9: 0:15 12/31/1988
-TA4 - task_delete - self
-TA5 - task_delete - TA3
-*** END OF TEST 19 ***
-
diff --git a/c/src/ada-tests/sptests/sp19/sptest.ads b/c/src/ada-tests/sptests/sp19/sptest.ads
deleted file mode 100644
index 92d65ffc3d..0000000000
--- a/c/src/ada-tests/sptests/sp19/sptest.ads
+++ /dev/null
@@ -1,102 +0,0 @@
---
--- SPTEST / SPECIFICATION
---
--- DESCRIPTION:
---
--- This package is the specification for Test 19 of the RTEMS
--- 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 RTEMS;
-
-package SPTEST is
-
---
--- These arrays contain the IDs and NAMEs of all RTEMS tasks created
--- by this test.
---
-
- TASK_ID : array ( RTEMS.UNSIGNED32 range 1 .. 6 ) of RTEMS.ID;
- TASK_NAME : array ( RTEMS.UNSIGNED32 range 1 .. 6 ) of RTEMS.NAME;
-
---
--- This array contains the floating point factors used by the
--- floating point tasks in this test.
---
-
- FP_FACTORS : array ( RTEMS.UNSIGNED32 range 0 .. 9 ) of FLOAT;
-
---
--- This array contains the integer factors used by the
--- integer tasks in this test.
---
-
- INTEGER_FACTORS : array ( RTEMS.UNSIGNED32 range 0 .. 9 ) of
- RTEMS.UNSIGNED32;
-
---
--- INIT
---
--- DESCRIPTION:
---
--- This RTEMS task initializes the application.
---
-
- procedure INIT (
- ARGUMENT : in RTEMS.TASK_ARGUMENT
- );
-
---
--- FIRST_FP_TASK
---
--- DESCRIPTION:
---
--- This RTEMS task tests the restart and deletion of floating point tasks.
---
-
- procedure FIRST_FP_TASK (
- ARGUMENT : in RTEMS.TASK_ARGUMENT
- );
-
---
--- FP_TASK
---
--- DESCRIPTION:
---
--- This RTEMS task tests the basic capabilities of a floating point
--- task.
---
-
- procedure FP_TASK (
- ARGUMENT : in RTEMS.TASK_ARGUMENT
- );
-
---
--- TASK_1
---
--- DESCRIPTION:
---
--- This RTEMS task provides a non-floating point task to test
--- that an application can utilize a mixture of floating point
--- and non-floating point tasks.
---
-
- procedure TASK_1 (
- ARGUMENT : in RTEMS.TASK_ARGUMENT
- );
-
-end SPTEST;