Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / ada / acats / support / f3a2a00.a
blobc839082312e02b799354cdd0e89866b08bf1441a
1 -- F3A2A00.A
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.
16 -- DISCLAIMER
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 --*
26 -- FOUNDATION DESCRIPTION:
27 -- This foundation declares support types and subprograms for testing
28 -- run-time accessibility checks.
30 -- CHANGE HISTORY:
31 -- 01 May 95 SAIC Initial prerelease version.
33 --!
35 package F3A2A00 is
37 type Tagged_Type is tagged record
38 C: Integer := 0;
39 end record;
41 type Array_Type is array (1 .. 10) of Tagged_Type;
43 type AccTag_L0 is access all Tagged_Type;
44 type AccTagClass_L0 is access all Tagged_Type'Class;
46 type AccArr_L0 is access all Array_Type;
48 X_L0 : Tagged_Type;
51 type TC_Result_Kind is (OK, P_E, O_E);
53 procedure TC_Display_Results (Actual : in TC_Result_Kind;
54 Expected: in TC_Result_Kind;
55 Message : in String);
56 end F3A2A00;
59 --==================================================================--
62 with Report;
63 package body F3A2A00 is
65 procedure TC_Display_Results (Actual : in TC_Result_Kind;
66 Expected: in TC_Result_Kind;
67 Message : in String) is
68 begin
69 if Actual /= Expected then
70 case Actual is
71 when OK =>
72 Report.Failed ("No exception raised: " & Message);
73 when P_E =>
74 Report.Failed ("Program_Error raised: " & Message);
75 when O_E =>
76 Report.Failed ("Unexpected exception raised: " & Message);
77 end case;
78 end if;
79 end TC_Display_Results;
81 end F3A2A00;