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
355
356
357
358
359
360
361
362
363
364
365
366
367
|
-- F611A00.A
--
-- Grant of Unlimited Rights
--
-- The Ada Conformity Assessment Authority (ACAA) holds unlimited
-- rights in the software and documentation contained herein. Unlimited
-- rights are the same as those granted by the U.S. Government for older
-- parts of the Ada Conformity Assessment Test Suite, and are defined
-- in DFAR 252.227-7013(a)(19). By making this public release, the ACAA
-- intends to confer upon all recipients unlimited rights equal to those
-- held by the ACAA. 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 ACAA 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.
--
-- Notice
--
-- The ACAA has created and maintains the Ada Conformity Assessment Test
-- Suite for the purpose of conformity assessments conducted in accordance
-- with the International Standard ISO/IEC 18009 - Ada: Conformity
-- assessment of a language processor. This test suite should not be used
-- to make claims of conformance unless used in accordance with
-- ISO/IEC 18009 and any applicable ACAA procedures.
--*
--
-- FOUNDATION DESCRIPTION:
-- This foundation declares a set of objects and types used to determine
-- if various precondition and postcondition expressions are evaluated
-- as expected.
--
-- CHANGE HISTORY:
-- 21 Mar 16 JAC Initial pre-release version.
-- 24 Mar 16 RLB Added foundation description.
-- 29 Mar 16 RLB Added TC_Order_Error so that the foundation isn't
-- including messages for particular tests.
-- 31 Mar 16 RLB Removed duplicative versions of flags that aren't
-- needed in individual tests.
-- 24 Dec 16 JAC Add flags for interface tests.
--
--!
package F611A00 is
TC_Order_Error : exception;
TC_Object_Distance_Called : Boolean;
TC_Object_Distance_Is_Positive_Called : Boolean;
TC_Object_Not_Too_Far_Called : Boolean;
TC_Object_Not_Too_Near_Called : Boolean;
TC_Object_Distance_Post_Class_Called : Boolean;
TC_Object_Distance_Pre_Class_Called : Boolean;
TC_Object_Distance_Specific_Post_Called : Boolean;
TC_Object_Distance_Specific_Pre_Called : Boolean;
TC_Object_X_Coord_Called : Boolean;
TC_Object_X_Coord_Specific_Post_Called : Boolean;
TC_Object_X_Coord_Specific_Pre_Called : Boolean;
TC_Object_Y_Coord_Called : Boolean;
TC_Object_Y_Coord_Specific_Post_Called : Boolean;
TC_Object_Y_Coord_Specific_Pre_Called : Boolean;
TC_Point_Distance_Post_Class_Called : Boolean;
TC_Point_Distance_Pre_Class_Called : Boolean;
TC_Triangle_Distance_Called : Boolean;
TC_Triangle_Distance_Is_Positive_Called : Boolean;
TC_Triangle_Not_Too_Far_Called : Boolean;
TC_Triangle_Not_Too_Near_Called : Boolean;
TC_Triangle_Distance_Post_Class_Called : Boolean;
TC_Triangle_Distance_Pre_Class_Called : Boolean;
TC_Triangle_Distance_Specific_Post_Called : Boolean;
TC_Triangle_Distance_Specific_Pre_Called : Boolean;
TC_Triangle_X_Coord_Called : Boolean;
TC_Triangle_Y_Coord_Called : Boolean;
procedure TC_Clear;
function TC_Log_Object_Distance_Post_Class_Called return Boolean;
function TC_Log_Object_Distance_Pre_Class_Called return Boolean;
function TC_Log_Object_Distance_Specific_Post_Called return Boolean;
function TC_Log_Object_Distance_Specific_Pre_Called return Boolean;
function TC_Log_Object_X_Coord_Specific_Post_Called return Boolean;
function TC_Log_Object_X_Coord_Specific_Pre_Called return Boolean;
function TC_Log_Object_Y_Coord_Specific_Post_Called return Boolean;
function TC_Log_Object_Y_Coord_Specific_Pre_Called return Boolean;
function TC_Log_Point_Distance_Post_Class_Called return Boolean;
function TC_Log_Point_Distance_Pre_Class_Called return Boolean;
function TC_Log_Triangle_Distance_Post_Class_Called return Boolean;
function TC_Log_Triangle_Distance_Pre_Class_Called return Boolean;
function TC_Log_Triangle_Distance_Specific_Post_Called return Boolean;
function TC_Log_Triangle_Distance_Specific_Pre_Called return Boolean;
procedure TC_Output;
end F611A00;
with Report;
package body F611A00 is
procedure TC_Clear is
begin
TC_Object_Distance_Called := False;
TC_Object_Distance_Is_Positive_Called := False;
TC_Object_Not_Too_Far_Called := False;
TC_Object_Not_Too_Near_Called := False;
TC_Object_Distance_Post_Class_Called := False;
TC_Object_Distance_Pre_Class_Called := False;
TC_Object_Distance_Specific_Post_Called := False;
TC_Object_Distance_Specific_Pre_Called := False;
TC_Object_X_Coord_Called := False;
TC_Object_Y_Coord_Called := False;
TC_Point_Distance_Post_Class_Called := False;
TC_Point_Distance_Pre_Class_Called := False;
TC_Triangle_Distance_Called := False;
TC_Triangle_Distance_Is_Positive_Called := False;
TC_Triangle_Not_Too_Far_Called := False;
TC_Triangle_Not_Too_Near_Called := False;
TC_Triangle_Distance_Post_Class_Called := False;
TC_Triangle_Distance_Pre_Class_Called := False;
TC_Triangle_Distance_Specific_Post_Called := False;
TC_Triangle_Distance_Specific_Pre_Called := False;
TC_Triangle_X_Coord_Called := False;
TC_Triangle_Y_Coord_Called := False;
end TC_Clear;
function TC_Log_Object_Distance_Pre_Class_Called return Boolean is
begin
TC_Object_Distance_Pre_Class_Called := True;
return True;
end TC_Log_Object_Distance_Pre_Class_Called;
function TC_Log_Object_Distance_Post_Class_Called return Boolean is
begin
-- Note that the Post'Class is called for children too
if not (TC_Object_Distance_Called or TC_Triangle_Distance_Called) then
Report.Failed
("Failure 13.1, Post'Class should only have been called after the" &
" subprogram body");
TC_Output;
end if;
TC_Object_Distance_Post_Class_Called := True;
return True;
end TC_Log_Object_Distance_Post_Class_Called;
function TC_Log_Object_Distance_Specific_Pre_Called return Boolean is
begin
TC_Object_Distance_Specific_Pre_Called := True;
return True;
end TC_Log_Object_Distance_Specific_Pre_Called;
function TC_Log_Object_Distance_Specific_Post_Called return Boolean is
begin
if not TC_Object_Distance_Called then
Report.Failed
("Failure 14.1, specific postcondition should only have been" &
" called after the subprogram body");
TC_Output;
end if;
TC_Object_Distance_Specific_Post_Called := True;
return True;
end TC_Log_Object_Distance_Specific_Post_Called;
function TC_Log_Object_X_Coord_Specific_Pre_Called return Boolean is
begin
TC_Object_X_Coord_Specific_Pre_Called := True;
return True;
end TC_Log_Object_X_Coord_Specific_Pre_Called;
function TC_Log_Object_X_Coord_Specific_Post_Called return Boolean is
begin
TC_Object_X_Coord_Specific_Post_Called := True;
return True;
end TC_Log_Object_X_Coord_Specific_Post_Called;
function TC_Log_Object_Y_Coord_Specific_Pre_Called return Boolean is
begin
TC_Object_Y_Coord_Specific_Pre_Called := True;
return True;
end TC_Log_Object_Y_Coord_Specific_Pre_Called;
function TC_Log_Object_Y_Coord_Specific_Post_Called return Boolean is
begin
TC_Object_Y_Coord_Specific_Post_Called := True;
return True;
end TC_Log_Object_Y_Coord_Specific_Post_Called;
function TC_Log_Point_Distance_Pre_Class_Called return Boolean is
begin
TC_Point_Distance_Pre_Class_Called := True;
return True;
end TC_Log_Point_Distance_Pre_Class_Called;
function TC_Log_Point_Distance_Post_Class_Called return Boolean is
begin
-- Note that the Post'Class is called for children too
if not (TC_Object_Distance_Called or TC_Triangle_Distance_Called) then
Report.Failed
("Failure 13.1, Post'Class should only have been called after the" &
" subprogram body");
TC_Output;
end if;
TC_Point_Distance_Post_Class_Called := True;
return True;
end TC_Log_Point_Distance_Post_Class_Called;
function TC_Log_Triangle_Distance_Pre_Class_Called return Boolean is
begin
TC_Triangle_Distance_Pre_Class_Called := True;
return True;
end TC_Log_Triangle_Distance_Pre_Class_Called;
function TC_Log_Triangle_Distance_Post_Class_Called return Boolean is
begin
if not TC_Triangle_Distance_Called then
raise TC_Order_Error; -- Postcondition before body.
end if;
TC_Triangle_Distance_Post_Class_Called := True;
return True;
end TC_Log_Triangle_Distance_Post_Class_Called;
function TC_Log_Triangle_Distance_Specific_Pre_Called return Boolean is
begin
TC_Triangle_Distance_Specific_Pre_Called := True;
return True;
end TC_Log_Triangle_Distance_Specific_Pre_Called;
function TC_Log_Triangle_Distance_Specific_Post_Called return Boolean is
begin
if not TC_Triangle_Distance_Called then
raise TC_Order_Error; -- Postcondition before body.
end if;
TC_Triangle_Distance_Specific_Post_Called := True;
return True;
end TC_Log_Triangle_Distance_Specific_Post_Called;
procedure TC_Output is
begin
Report.Comment
("Object_Distance_Called is " &
Boolean'Image (TC_Object_Distance_Called));
Report.Comment
("Object_Distance_Is_Positive_Called is " &
Boolean'Image (TC_Object_Distance_Is_Positive_Called));
Report.Comment
("Object_Not_Too_Far_Called is " &
Boolean'Image (TC_Object_Not_Too_Far_Called));
Report.Comment
("Object_Not_Too_Near_Called is " &
Boolean'Image (TC_Object_Not_Too_Near_Called));
Report.Comment
("Object_Distance_Pre_Class_Called is " &
Boolean'Image (TC_Object_Distance_Pre_Class_Called));
Report.Comment
("Object_Distance_Post_Class_Called is " &
Boolean'Image (TC_Object_Distance_Post_Class_Called));
Report.Comment
("Object_Distance_Specific_Pre_Called is " &
Boolean'Image (TC_Object_Distance_Specific_Pre_Called));
Report.Comment
("Object_Distance_Specific_Post_Called is " &
Boolean'Image (TC_Object_Distance_Specific_Post_Called));
Report.Comment
("Object_X_Coord_Called is " &
Boolean'Image (TC_Object_X_Coord_Called));
Report.Comment
("Object_Y_Coord_Called is " &
Boolean'Image (TC_Object_Y_Coord_Called));
Report.Comment
("Point_Distance_Pre_Class_Called is " &
Boolean'Image (TC_Point_Distance_Pre_Class_Called));
Report.Comment
("Point_Distance_Post_Class_Called is " &
Boolean'Image (TC_Point_Distance_Post_Class_Called));
Report.Comment
("Triangle_Distance_Called is " &
Boolean'Image (TC_Triangle_Distance_Called));
Report.Comment
("Triangle_Distance_Is_Positive_Called is " &
Boolean'Image (TC_Triangle_Distance_Is_Positive_Called));
Report.Comment
("Triangle_Not_Too_Far_Called is " &
Boolean'Image (TC_Triangle_Not_Too_Far_Called));
Report.Comment
("Triangle_Not_Too_Near_Called is " &
Boolean'Image (TC_Triangle_Not_Too_Near_Called));
Report.Comment
("Triangle_Distance_Pre_Class_Called is " &
Boolean'Image (TC_Triangle_Distance_Pre_Class_Called));
Report.Comment
("Triangle_Distance_Post_Class_Called is " &
Boolean'Image (TC_Triangle_Distance_Post_Class_Called));
Report.Comment
("Triangle_Distance_Specific_Pre_Called is " &
Boolean'Image (TC_Triangle_Distance_Specific_Pre_Called));
Report.Comment
("Triangle_Distance_Specific_Post_Called is " &
Boolean'Image (TC_Triangle_Distance_Specific_Post_Called));
Report.Comment
("Triangle_X_Coord_Called is " &
Boolean'Image (TC_Triangle_X_Coord_Called));
Report.Comment
("Triangle_Y_Coord_Called is " &
Boolean'Image (TC_Triangle_Y_Coord_Called));
Report.Comment ("");
end TC_Output;
end F611A00;
|