2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / ada / acats / tests / l / la140272.am
bloba8cd1c958ae2a86ca7f1f4186d6b41b8c180861b
1 -- LA140272.AM
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.
16 --                                    DISCLAIMER
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 --*
26 -- OBJECTIVE:
27 --      Check that a compilation unit may not depend semantically
28 --      on two different versions of the same compilation unit.
29 --      Check the case where a task body depends on non-generic 
30 --      package specification.
32 -- TEST DESCRIPTION:
33 --      This test compiles a package spec, another package 
34 --      with a body containing a task with a body that withs the 
35 --      first package spec, and a main procedure that withs the 
36 --      second package.  Then, a new version of the first package
37 --      spec is compiled (in a separate file, simulating 
38 --      editing and modification to the unit).  Unless automatic 
39 --      recompilation is supported, this test should fail to link.  
40 --      Otherwise, the test should recompile and link the correct 
41 --      version of the package spec and report "PASSED" at 
42 --      execution time.
44 -- SPECIAL REQUIREMENTS:
45 --      To build this test:
46 --         1) Compile the file LA140270 (and include the results in the
47 --            program library).
48 --         2) Compile the file LA140271 (and include the results in the
49 --            program library).
50 --         3) Compile the file LA140272 (and include the results in the
51 --            program library).
52 --         4) Compile the file LA140273 (and include the results in the
53 --            program library).
54 --         5) Attempt to build an executable image.
55 --         6) If an executable image results, run it.
57 -- TEST FILES:
58 --      This test consists of the following files:
59 --         LA140270.A
60 --         LA140271.A
61 --      -> LA140272.AM
62 --         LA140273.A 
64 -- PASS/FAIL CRITERIA:    
65 --      The test passes if a link time error message reports that 
66 --      LA14027_1.LA14027_2 is missing or obsolete and no executable image
67 --      results.  The test also passes if an executable image is produced
68 --      and reports "PASSED" (in the case where the implementation supports
69 --      automatic recompilation).            
72 -- CHANGE HISTORY:
73 --     01 MAY 95   ACVC 1.12   LA5007O baseline version
74 --     28 JUL 95   SAIC        Initial version
75 --     29 JAN 96   SAIC        First revision after review
76 --     18 NOV 96   SAIC        Modified unit names and prologue to conform
77 --                             to coding conventions.
79 --!
81 with Report; use Report;
82 with LA14027_1;
84 procedure LA140272 is
85      TC_val : integer := 0;
86 begin
87      Test ("LA14027", "Check that a compilation unit may not depend " &
88                       "semantically on two different versions of the " &
89                       "same compilation unit.  Check the case where " &
90                       "a task body depends on non-generic package " &
91                       "specification");
93      LA14027_1.Random (TC_val);
95      if TC_val = 110 then
96           Failed ("Old version used");
97      elsif TC_val /= 0 then
98           Failed ("Incorrect value returned");
99      end if;
101      Result;
102 end LA140272;