comparison gcc/testsuite/ada/acats/support/f3a2a00.a @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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.
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 --
26 -- FOUNDATION DESCRIPTION:
27 -- This foundation declares support types and subprograms for testing
28 -- run-time accessibility checks.
29 --
30 -- CHANGE HISTORY:
31 -- 01 May 95 SAIC Initial prerelease version.
32 --
33 --!
34
35 package F3A2A00 is
36
37 type Tagged_Type is tagged record
38 C: Integer := 0;
39 end record;
40
41 type Array_Type is array (1 .. 10) of Tagged_Type;
42
43 type AccTag_L0 is access all Tagged_Type;
44 type AccTagClass_L0 is access all Tagged_Type'Class;
45
46 type AccArr_L0 is access all Array_Type;
47
48 X_L0 : Tagged_Type;
49
50
51 type TC_Result_Kind is (OK, P_E, O_E);
52
53 procedure TC_Display_Results (Actual : in TC_Result_Kind;
54 Expected: in TC_Result_Kind;
55 Message : in String);
56 end F3A2A00;
57
58
59 --==================================================================--
60
61
62 with Report;
63 package body F3A2A00 is
64
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;
80
81 end F3A2A00;