comparison gcc/testsuite/ada/acats/tests/c9/c95034a.ada @ 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 -- C95034A.ADA
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 -- CHECK THAT A CALLING TASK IS SUSPENDED IF THE RECEIVING TASK
26 -- HAS NOT REACHED A CORRESPONDING ACCEPT STATEMENT.
27
28 -- WEI 3/ 4/82
29 -- JWC 6/28/85 RENAMED FROM C950BJA-B.ADA
30
31 with Impdef;
32 WITH REPORT;
33 USE REPORT;
34 PROCEDURE C95034A IS
35
36 SUBTYPE ARG IS NATURAL RANGE 0..9;
37 SPYNUMB : NATURAL := 0;
38
39 PROCEDURE PSPY_NUMB (DIGT: IN ARG) IS
40 BEGIN
41 SPYNUMB := 10*SPYNUMB+DIGT;
42 END PSPY_NUMB;
43
44 TASK T1 IS
45 ENTRY E1;
46 ENTRY E2;
47 END T1;
48
49 TASK BODY T1 IS
50 BEGIN
51 ACCEPT E1 DO
52 PSPY_NUMB (1);
53 DELAY 1.0 * Impdef.One_Second;
54 END E1;
55 ACCEPT E2 DO
56 PSPY_NUMB (2);
57 END E2;
58 END T1;
59
60 TASK T2 IS
61 ENTRY BYE;
62 END T2;
63
64 TASK BODY T2 IS
65 BEGIN
66 T1.E2;
67 PSPY_NUMB (3);
68 ACCEPT BYE;
69 END T2;
70
71 BEGIN
72
73 TEST ("C95034A", "SUSPENSION OF CALLING TASK");
74
75 T1.E1;
76 T2.BYE;
77
78 IF SPYNUMB /= 123 THEN
79 FAILED ("ERROR DURING TASK EXECUTION");
80 COMMENT ("ACTUAL ORDER WAS:" & INTEGER'IMAGE(SPYNUMB));
81 END IF;
82
83 RESULT;
84
85 END C95034A;