OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [cxb/] [cxb4007.a] - Blame information for rev 720

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 720 jeremybenn
-- CXB4007.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
-- OBJECTIVE:
27
--      Check that the function Valid with Byte_Array and Binary_Format
28
--      parameters returns True if the Byte_Array parameter corresponds
29
--      to any value inside the range of type Num.
30
--      Check that function Valid returns False if the Byte_Array parameter
31
--      corresponds to a value outside the range of Num.
32
--
33
--      Check that function Length with Binary_Format parameter will return
34
--      the minimum length of a Byte_Array value required to hold any value
35
--      of decimal type Num.
36
--
37
--      Check that function To_Decimal with Byte_Array and Binary_Format
38
--      parameters will return a decimal type value that corresponds to
39
--      parameter Item (of type Byte_Array) under the specified Format.
40
--
41
--      Check that Conversion_Error is propagated by function To_Decimal if
42
--      the Byte_Array parameter Item represents a decimal value outside the
43
--      range of decimal type Num.
44
--
45
--      Check that function To_Binary will produce a Byte_Array result that
46
--      corresponds to the decimal type parameter Item, under the specified
47
--      Binary_Format.
48
--
49
-- TEST DESCRIPTION:
50
--      This test uses several instantiations of generic package
51
--      Decimal_Conversions to provide appropriate test material.
52
--      This test uses the function To_Binary to create all Byte_Array
53
--      parameter values used in calls to functions Valid and To_Decimal.
54
--      The function Valid is tested with parameters to provide both
55
--      valid and invalid expected results.  This test also checks that
56
--      Function To_Decimal produces expected results in cases where each
57
--      of the three predefined Binary_Format constants are used in the
58
--      function calls. In addition, the prescribed propagation of
59
--      Conversion_Error by function To_Decimal is verified.
60
--
61
-- APPLICABILITY CRITERIA:
62
--      This test is applicable to all implementations that provide
63
--      package Interfaces.COBOL.  If an implementation provides
64
--      package Interfaces.COBOL, this test must compile, execute, and
65
--      report "PASSED".
66
--
67
--
68
-- CHANGE HISTORY:
69
--      14 Feb 96   SAIC    Initial release for 2.1.
70
--      30 May 96   SAIC    Incorporated reviewer comments for ACVC 2.1.
71
--      27 Oct 96   SAIC    Incorporated reviewer comments.
72
--      05 JAN 98   EDS     Remove incorrect subtest.
73
--!
74
 
75
with Report;
76
with Ada.Exceptions;
77
with Interfaces.COBOL;                                          -- N/A => ERROR
78
 
79
procedure CXB4007 is
80
begin
81
 
82
   Report.Test ("CXB4007", "Check that functions Valid, Length, To_Decimal " &
83
                           "and To_Binary specific to Byte_Array and "       &
84
                           "Binary_Format parameters produce correct results");
85
 
86
   Test_Block:
87
   declare
88
 
89
      use Interfaces.COBOL;
90
      use Ada.Exceptions;
91
      use type Interfaces.COBOL.Numeric;
92
 
93
      type Decimal_Type_1 is delta 0.1    digits  6;
94
      type Decimal_Type_2 is delta 0.01   digits  8;
95
      type Decimal_Type_3 is delta 0.001  digits 10;
96
      type Decimal_Type_4 is delta 0.0001 digits 12;
97
 
98
      package Pack_1 is new Decimal_Conversions(Decimal_Type_1);
99
      package Pack_2 is new Decimal_Conversions(Decimal_Type_2);
100
      package Pack_3 is new Decimal_Conversions(Decimal_Type_3);
101
      package Pack_4 is new Decimal_Conversions(Decimal_Type_4);
102
 
103
      TC_Dec_1      : Decimal_Type_1 := 12345.6;
104
      TC_Dec_2      : Decimal_Type_2 := 123456.78;
105
      TC_Dec_3      : Decimal_Type_3 := 1234567.890;
106
      TC_Dec_4      : Decimal_Type_4 := 12345678.9012;
107
      TC_Min_Length : Natural        := 1;
108
      TC_Max_Length : Natural        := 16;
109
      TC_Valid      : Boolean        := False;
110
 
111
   begin
112
 
113
      -- Check that the function Valid with Byte_Array and Binary_Format
114
      -- parameters returns True if the Byte_Array parameter corresponds to
115
      -- any value inside the range of type Num.
116
 
117
      if not Pack_1.Valid(Item   => Pack_1.To_Binary(TC_Dec_1,
118
                                                     High_Order_First),
119
                          Format => High_Order_First)                   or
120
         not Pack_1.Valid(Pack_1.To_Binary(0.0, Low_Order_First),
121
                          Format => Low_Order_First)
122
      then
123
         Report.Failed("Incorrect result from function Valid, using " &
124
                       "parameters that should return a positive result - 1");
125
      end if;
126
 
127
      TC_Valid := (Pack_2.Valid(Pack_2.To_Binary(TC_Dec_2, High_Order_First),
128
                                Format => High_Order_First)             and
129
                   Pack_2.Valid(Pack_2.To_Binary(0.01, Low_Order_First),
130
                                Format => Low_Order_First));
131
      if not TC_Valid then
132
         Report.Failed("Incorrect result from function Valid, using " &
133
                       "parameters that should return a positive result - 2");
134
      end if;
135
 
136
      if not Pack_3.Valid(Item   => Pack_3.To_Binary(TC_Dec_3,
137
                                                     Low_Order_First),
138
                          Format => Low_Order_First)                  or
139
         not Pack_3.Valid(Pack_3.To_Binary(0.001, High_Order_First),
140
                          Format => High_Order_First)                 or
141
         not Pack_3.Valid(Pack_3.To_Binary(123.456, Native_Binary),
142
                          Native_Binary)
143
      then
144
         Report.Failed("Incorrect result from function Valid, using " &
145
                       "parameters that should return a positive result - 3");
146
      end if;
147
 
148
 
149
      -- Check that function Valid returns False if the Byte_Array parameter
150
      -- corresponds to a value outside the range of Num.
151
      -- Note: use a Byte_Array value Item created by an instantiation of
152
      --       To_Binary with a larger Num type as the generic formal.
153
 
154
      if Pack_1.Valid(Item   => Pack_2.To_Binary(TC_Dec_2, Low_Order_First),
155
                      Format => Low_Order_First)                or
156
         Pack_2.Valid(Pack_3.To_Binary(TC_Dec_3, High_Order_First),
157
                      Format => High_Order_First)               or
158
         Pack_3.Valid(Pack_4.To_Binary(TC_Dec_4, Native_Binary),
159
                      Native_Binary)
160
      then
161
         Report.Failed("Incorrect result from function Valid, using " &
162
                       "parameters that should return a negative result");
163
      end if;
164
 
165
 
166
      -- Check that function Length with Binary_Format parameter will return
167
      -- the minimum length of a Byte_Array value required to hold any value
168
      -- of decimal type Num.
169
 
170
      if not (Pack_1.Length(Native_Binary)    >= TC_Min_Length and
171
              Pack_1.Length(Low_Order_First)  <= TC_Max_Length and
172
              Pack_2.Length(High_Order_First) >= TC_Min_Length and
173
              Pack_2.Length(Native_Binary)    <= TC_Max_Length and
174
              Pack_3.Length(Low_Order_First)  >= TC_Min_Length and
175
              Pack_3.Length(High_Order_First) <= TC_Max_Length and
176
              Pack_4.Length(Native_Binary)    >= TC_Min_Length and
177
              Pack_4.Length(Low_Order_First)  <= TC_Max_Length)
178
      then
179
         Report.Failed("Incorrect result from function Length");
180
      end if;
181
 
182
 
183
 
184
      -- Check that function To_Decimal with Byte_Array and Binary_Format
185
      -- parameters will return a decimal type value that corresponds to
186
      -- parameter Item (of type Byte_Array) under the specified Format.
187
 
188
      if Pack_1.To_Decimal(Item   => Pack_1.To_Binary(Item   => TC_Dec_1,
189
                                                      Format => Native_Binary),
190
                           Format => Native_Binary) /=
191
         TC_Dec_1
192
      then
193
         Report.Failed("Incorrect result from function To_Decimal - 1");
194
      end if;
195
 
196
      if Pack_3.To_Decimal(Pack_3.To_Binary(TC_Dec_3, High_Order_First),
197
                           Format => High_Order_First) /=
198
         TC_Dec_3
199
      then
200
         Report.Failed("Incorrect result from function To_Decimal - 2");
201
      end if;
202
 
203
      if Pack_4.To_Decimal(Pack_4.To_Binary(TC_Dec_4, Low_Order_First),
204
                           Low_Order_First) /=
205
         TC_Dec_4
206
      then
207
         Report.Failed("Incorrect result from function To_Decimal - 3");
208
      end if;
209
 
210
 
211
 
212
      -- Check that Conversion_Error is propagated by function To_Decimal
213
      -- if the Byte_Array parameter Item represents a decimal value outside
214
      -- the range of decimal type Num.
215
      -- Note: use a Byte_Array value Item created by an instantiation of
216
      --       To_Binary with a larger Num type as the generic formal.
217
 
218
      begin
219
         TC_Dec_4 := 99999.9001;
220
         TC_Dec_1 := Pack_1.To_Decimal(Pack_4.To_Binary(TC_Dec_4,
221
                                                        Native_Binary),
222
                                       Format => Native_Binary);
223
         if TC_Dec_1 = 99999.9 then
224
            Report.Comment("Minimize dead assignment optimization -- " &
225
                           "Should never be printed");
226
         end if;
227
         Report.Failed("Conversion_Error not raised following call to "   &
228
                       "function To_Decimal if the Byte_Array parameter " &
229
                       "Item represents a decimal value outside the "     &
230
                       "range of decimal type Num");
231
      exception
232
         when Conversion_Error   => null;  -- OK, expected exception.
233
         when The_Error : others =>
234
            Report.Failed(Exception_Name(The_Error) & " was incorrectly " &
235
                          "raised following call to function To_Decimal " &
236
                          "if the Byte_Array parameter Item represents "  &
237
                          "a decimal value outside the range of decimal " &
238
                          "type Num");
239
      end;
240
 
241
 
242
 
243
      -- Check that function To_Binary will produce a Byte_Array result that
244
      -- corresponds to the decimal type parameter Item, under the specified
245
      -- Binary_Format.
246
 
247
      -- Different ordering.
248
      TC_Dec_1 := 12345.6;
249
      if Pack_1.To_Binary(TC_Dec_1, Low_Order_First)  =
250
         Pack_1.To_Binary(TC_Dec_1, High_Order_First)
251
      then
252
         Report.Failed("Incorrect result from function To_Binary - 1");
253
      end if;
254
 
255
      -- Variable vs. literal.
256
      TC_Dec_2 := 12345.00;
257
      if Pack_2.To_Binary(TC_Dec_2, Native_Binary) /=
258
         Pack_2.To_Binary(12345.00, Native_Binary)
259
      then
260
         Report.Failed("Incorrect result from function To_Binary - 2");
261
      end if;
262
 
263
   exception
264
      when The_Error : others =>
265
         Report.Failed("The following exception was raised in the " &
266
                       "Test_Block: " & Exception_Name(The_Error));
267
   end Test_Block;
268
 
269
   Report.Result;
270
 
271
end CXB4007;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.