aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/ada/acats/tests/c4/c460010.a
blob: 790a8c3396c699d030d7a81bf504b3bc4e583262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
-- C460010.A
--
--                             Grant of Unlimited Rights
--
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained 
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making 
--     this public release, the Government intends to confer upon all 
--     recipients unlimited rights  equal to those held by the Government.  
--     These rights include rights to use, duplicate, release or disclose the 
--     released technical data and computer software in whole or in part, in 
--     any manner and for any purpose whatsoever, and to have or permit others 
--     to do so.
--
--                                    DISCLAIMER
--
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED 
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE 
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--
-- OBJECTIVE:
--      Check that, for an array aggregate without an others choice assigned
--      to an object of a constrained array subtype, Constraint_Error is not
--      raised if the length of each dimension of the aggregate equals the
--      length of the corresponding dimension of the target object, even if
--      the bounds of the corresponding index ranges do not match.
--
-- TEST DESCRIPTION:
--      The test verifies that sliding of array bounds is performed on array
--      aggregates that are part of a larger aggregate, where the bounds of
--      the corresponding index ranges do not match but the lengths of the
--      corresponding dimensions are the same. Both aggregates containing
--      named associations and positional associations are checked. Cases
--      involving static and nonstatic index constraints, as well as pre-
--      defined and modular integer index subtypes, are included.
--
--
-- CHANGE HISTORY:
--      15 Apr 96   SAIC    Prerelease version for ACVC 2.1.
--      20 Oct 96   SAIC    Removed unnecessary parentheses and type
--                          conversions.
--
--!

with Report;
pragma Elaborate (Report);

package C460010_0 is

  type Modular_Type is mod 10;  -- Range 0 .. 9.


  Two  : Modular_Type := Modular_Type (Report.Ident_Int(2));
  Four : Modular_Type := Modular_Type (Report.Ident_Int(4));

  type Array_Modular_Index is array (Modular_Type range <>) of Integer;

  subtype Array_Static_Modular_Constraint    is Array_Modular_Index(2..4);
  subtype Array_Nonstatic_Modular_Constraint is Array_Modular_Index(Two..Four);

end C460010_0;


     --==================================================================--


with Report;
pragma Elaborate (Report);

package C460010_1 is

  One  : Integer := Report.Ident_Int(1);
  Ten  : Integer := Report.Ident_Int(10);

  subtype Integer_Subtype is Integer range One .. Ten;


  Two  : Integer := Report.Ident_Int(2);
  Four : Integer := Report.Ident_Int(4);

  type Array_Integer_Index is array (Integer_Subtype range <>) of Boolean;

  subtype Array_Static_Integer_Constraint    is Array_Integer_Index(2..4);
  subtype Array_Nonstatic_Integer_Constraint is Array_Integer_Index(Two..Four);

end C460010_1;


     --==================================================================--


-- Generic equality function:

generic
   type Operand_Type is private;
function C460010_2 (L, R : Operand_Type) return Boolean;


function C460010_2 (L, R : Operand_Type) return Boolean is
begin
   return L = R;
end C460010_2;


     --==================================================================--


with C460010_0;
with C460010_1;
with C460010_2;

with Report;

procedure C460010 is

   generic function Generic_Equality renames C460010_2;

begin
   Report.Test ("C460010", "Check that Constraint_Error is not raised if " &
                "an array aggregate without an others choice is assigned " &
                "to an object of a constrained array subtype, and the "    &
                "length of each dimension of the aggregate equals the "    &
                "length of the corresponding dimension of the target object");


               ---=---=---=---=---=---=---=---=---=---=---


   declare
     type Arr is array (1..1) of C460010_0.Array_Static_Modular_Constraint;
     function Equals is new Generic_Equality (Arr);
     Target : Arr;
   begin
                       ---=---=---=---=---=---=---
     CASE_1:
     begin
        Target := (1 => (1 => 1, 2 => 2, 3 => 3));  -- Named associations.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 1");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 1");
      end CASE_1;

                       ---=---=---=---=---=---=---

     CASE_2:
     begin
        Target := (1 => (5, 10, 15));  -- Positional associations.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 2");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 2");
      end CASE_2;

                       ---=---=---=---=---=---=---
   end;


               ---=---=---=---=---=---=---=---=---=---=---


   declare
     type Rec (Disc : C460010_0.Modular_Type := 4) is record
       Arr : C460010_0.Array_Modular_Index(2 .. Disc);
     end record;

     function Equals is new Generic_Equality (Rec);
     Target : Rec;
   begin
                       ---=---=---=---=---=---=---
     CASE_3:
     begin
        Target := (Disc => 4, Arr => (1 => 1, 2 => 2, 3 => 3));  -- Named.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 3");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 3");
      end CASE_3;

                       ---=---=---=---=---=---=---

     CASE_4:
     begin
        Target := (Disc => 4, Arr => (1 ,2, 3));    -- Positional.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 4");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 4");
      end CASE_4;

                       ---=---=---=---=---=---=---
   end;


               ---=---=---=---=---=---=---=---=---=---=---


   declare
     type Arr is array (1..1) of C460010_0.Array_Nonstatic_Modular_Constraint;
     function Equals is new Generic_Equality (Arr);
     Target : Arr;
   begin
                       ---=---=---=---=---=---=---
     CASE_5:
     begin
        Target := (1 => (1 => 1, 2 => 2, 3 => 3));  -- Named associations.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 5");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 5");
      end CASE_5;

                       ---=---=---=---=---=---=---

     CASE_6:
     begin
        Target := (1 => ((5, 10, 15)));  -- Positional associations.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 6");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 6");
      end CASE_6;

                       ---=---=---=---=---=---=---
   end;


               ---=---=---=---=---=---=---=---=---=---=---


   declare
     type Arr is array (1..1) of C460010_1.Array_Static_Integer_Constraint;
     function Equals is new Generic_Equality (Arr);
     Target : Arr;
   begin
                       ---=---=---=---=---=---=---
     CASE_7:
     begin
        Target := (1 => (1 => True, 2 => True, 3 => False));  -- Named.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 7");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 7");
      end CASE_7;

                       ---=---=---=---=---=---=---

     CASE_8:
     begin
        Target := (1 => ((False, False, True)));  -- Positional.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 8");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 8");
      end CASE_8;

                       ---=---=---=---=---=---=---
   end;


               ---=---=---=---=---=---=---=---=---=---=---


   declare
     type Arr is array (1..1) of C460010_1.Array_Nonstatic_Integer_Constraint;
     function Equals is new Generic_Equality (Arr);
     Target : Arr;
   begin
                       ---=---=---=---=---=---=---
     CASE_9:
     begin
        Target := (1 => (1 => True, 2 => True, 3 => False));  -- Named.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 9");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 9");
      end CASE_9;

                       ---=---=---=---=---=---=---

     CASE_10:
     begin
        Target := (1 => (False, False, True));      -- Positional.

        if not Equals (Target, Target) then
             Report.Failed ("Avoid optimization");  -- Never executed.
        end if;
      exception
         when Constraint_Error =>
            Report.Failed ("Constraint_Error raised: Case 10");
         when others           =>
            Report.Failed ("Unexpected exception raised: Case 10");
      end CASE_10;

                       ---=---=---=---=---=---=---
   end;


               ---=---=---=---=---=---=---=---=---=---=---


     Report.Result;

end C460010;