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
|
-- C611B020.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.
--*
--
-- OBJECTIVE:
-- For X'Old given in the postcondition for a subprogram S, check that
-- X'Old has the same tag as X when X is a parameter P of S, even if the
-- tag of X is different than the nominal subtype of P. (Part 2:
-- Post'Class)
--
-- TEST DESCRIPTION:
-- We declare an event counter type and an extension thereof. We include
-- function calls that are bound based on the type of the prefix, and
-- check which are called.
--
-- To check the objective, we directly check the tag. It would have been
-- more usage-oriented to test dispatching instead, but that would have
-- added more complication to the test.
--
-- TEST FILES:
-- This test consists of the following files:
-- -> C611B020.A
-- C611B021.A
-- C611B022.AM
--
-- CHANGE HISTORY:
-- 21 Mar 16 JAC Initial pre-release version.
-- 24 Mar 16 RLB Renamed so all test parts have same first 7
-- characters.
--
--!
package C611B020 is
pragma Assertion_Policy (Check);
type Event_Record is tagged private;
procedure Event_Occurred (Event : in out Event_Record)
with Post'Class => Event.Count1 = Event'Old.Count2 + 1;
function Count1 (Event : in Event_Record) return Integer;
function Count2 (Event : in Event_Record) return Integer;
private
type Event_Record is tagged record
Id : Integer := 0;
No_Of_Occurrences : Integer := 0;
end record;
end C611B020;
with F611B00;
package body C611B020 is
procedure Event_Occurred (Event : in out Event_Record) is
begin
Event.No_Of_Occurrences := Event.No_Of_Occurrences + 1;
end Event_Occurred;
function Count1 (Event : in Event_Record) return Integer is
begin
F611B00.TC_Log_Event_Record_Count1_Called (
Event_Record'Class(Event)'Tag);
return Event.No_Of_Occurrences;
end Count1;
function Count2 (Event : in Event_Record) return Integer is
begin
F611B00.TC_Log_Event_Record_Count2_Called (
Event_Record'Class(Event)'Tag);
return Event.No_Of_Occurrences;
end Count2;
end C611B020;
|