OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [c9/] [c9a004a.ada] - Blame information for rev 720

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 720 jeremybenn
-- C9A004A.ADA
2
 
3
--                             Grant of Unlimited Rights
4
--
5
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
6
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained 
7
--     unlimited rights in the software and documentation contained herein.
8
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making 
9
--     this public release, the Government intends to confer upon all 
10
--     recipients unlimited rights  equal to those held by the Government.  
11
--     These rights include rights to use, duplicate, release or disclose the 
12
--     released technical data and computer software in whole or in part, in 
13
--     any manner and for any purpose whatsoever, and to have or permit others 
14
--     to do so.
15
--
16
--                                    DISCLAIMER
17
--
18
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
19
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED 
20
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
21
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE 
22
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
23
--     PARTICULAR PURPOSE OF SAID MATERIAL.
24
--*
25
-- CHECK THAT IF A TASK IS ABORTED BEFORE BEING ACTIVATED, THE TASK IS
26
--     TERMINATED.
27
 
28
 
29
-- RM 5/21/82
30
-- SPS 11/21/82
31
-- JBG 6/3/85
32
-- PWN 09/11/94  REMOVED PRAGMA PRIORITY FOR ADA 9X
33
 
34
WITH REPORT; USE REPORT;
35
WITH SYSTEM; USE SYSTEM;
36
PROCEDURE  C9A004A  IS
37
 
38
BEGIN
39
 
40
 
41
     -------------------------------------------------------------------
42
 
43
 
44
     TEST ("C9A004A", "CHECK THAT IF A TASK IS ABORTED"  &
45
                      " BEFORE BEING ACTIVATED,"         &
46
                      "  THE TASK IS TERMINATED"         );
47
 
48
 
49
     DECLARE
50
 
51
 
52
          TASK TYPE  T_TYPE  IS
53
 
54
 
55
               ENTRY  E ;
56
 
57
          END  T_TYPE ;
58
 
59
 
60
          T_OBJECT1 : T_TYPE ;
61
 
62
 
63
          TASK BODY  T_TYPE  IS
64
               BUSY : BOOLEAN := FALSE ;
65
          BEGIN
66
 
67
               NULL;
68
 
69
          END  T_TYPE ;
70
 
71
 
72
          PACKAGE  P  IS
73
               X : INTEGER := 0 ;
74
          END  P ;
75
 
76
 
77
          PACKAGE BODY  P  IS
78
          BEGIN
79
 
80
               IF      T_OBJECT1'TERMINATED  OR
81
                   NOT T_OBJECT1'CALLABLE
82
               THEN
83
                    FAILED( "WRONG VALUES FOR ATTRIBUTES" );
84
               END IF;
85
 
86
               ABORT  T_OBJECT1 ;  -- ELABORATED BUT NOT YET ACTIVATED.
87
 
88
          END  P ;
89
 
90
 
91
     BEGIN
92
 
93
 
94
          IF NOT  T_OBJECT1'TERMINATED  THEN
95
               FAILED(  "ABORTED (BEFORE ACTIVATION) TASK"  &
96
                        "  NOT TERMINATED"  );
97
          END IF;
98
 
99
     EXCEPTION
100
 
101
          WHEN TASKING_ERROR =>
102
               FAILED ("TASKING_ERROR RAISED");
103
 
104
     END;
105
 
106
     RESULT;
107
 
108
END C9A004A;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.