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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [ca/] [ca13a01.a] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
-- CA13A01.A
-- CA13A01.A
--
--
--                             Grant of Unlimited Rights
--                             Grant of Unlimited Rights
--
--
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     unlimited rights in the software and documentation contained herein.
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     this public release, the Government intends to confer upon all
--     this public release, the Government intends to confer upon all
--     recipients unlimited rights  equal to those held by the Government.
--     recipients unlimited rights  equal to those held by the Government.
--     These rights include rights to use, duplicate, release or disclose the
--     These rights include rights to use, duplicate, release or disclose the
--     released technical data and computer software in whole or in part, in
--     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
--     any manner and for any purpose whatsoever, and to have or permit others
--     to do so.
--     to do so.
--
--
--                                    DISCLAIMER
--                                    DISCLAIMER
--
--
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--*
--
--
-- OBJECTIVE:
-- OBJECTIVE:
--      Check that subunits declared in non-generic child units of a public
--      Check that subunits declared in non-generic child units of a public
--      parent have the same visibility into its parent, its siblings
--      parent have the same visibility into its parent, its siblings
--      (public and private), and packages on which its parent depends
--      (public and private), and packages on which its parent depends
--      as is available at the point of their declaration.
--      as is available at the point of their declaration.
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      Declare an check system procedure as a subunit in a private child
--      Declare an check system procedure as a subunit in a private child
--      package of the basic operation package (FA13A00.A).  This procedure
--      package of the basic operation package (FA13A00.A).  This procedure
--      has visibility into its parent ancestor and its private sibling.
--      has visibility into its parent ancestor and its private sibling.
--
--
--      Declare an emergency procedure as a subunit in a public child package
--      Declare an emergency procedure as a subunit in a public child package
--      of the basic operation package (FA13A00.A).  This procedure has
--      of the basic operation package (FA13A00.A).  This procedure has
--      visibility into its parent ancestor and its private sibling.
--      visibility into its parent ancestor and its private sibling.
--
--
--      Declare an express procedure as a subunit in a public child subprogram
--      Declare an express procedure as a subunit in a public child subprogram
--      of the basic operation package (FA13A00.A).  This procedure has
--      of the basic operation package (FA13A00.A).  This procedure has
--      visibility into its parent ancestor and its public sibling.
--      visibility into its parent ancestor and its public sibling.
--
--
--      In the main program, "with"s the child package and subprogram.  Check
--      In the main program, "with"s the child package and subprogram.  Check
--      that subunits perform as expected.
--      that subunits perform as expected.
--
--
-- TEST FILES:
-- TEST FILES:
--      The following files comprise this test:
--      The following files comprise this test:
--
--
--         FA13A00.A
--         FA13A00.A
--         CA13A01.A
--         CA13A01.A
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--
--
--!
--!
-- Private child package of an elevator application.  This package
-- Private child package of an elevator application.  This package
-- provides maintenance operations.
-- provides maintenance operations.
private package FA13A00_1.CA13A01_4 is    -- Maintenance operation
private package FA13A00_1.CA13A01_4 is    -- Maintenance operation
   One_Floor : Floor_No := 1;             -- Type declared in parent.
   One_Floor : Floor_No := 1;             -- Type declared in parent.
   procedure Check_System;
   procedure Check_System;
   -- other type definitions and procedure declarations in real application.
   -- other type definitions and procedure declarations in real application.
end FA13A00_1.CA13A01_4;
end FA13A00_1.CA13A01_4;
     --==================================================================--
     --==================================================================--
-- Context clauses required for visibility needed by separate subunit.
-- Context clauses required for visibility needed by separate subunit.
with FA13A00_0;                           -- Building Manager
with FA13A00_0;                           -- Building Manager
with FA13A00_1.FA13A00_2;                 -- Floor Calculation (private)
with FA13A00_1.FA13A00_2;                 -- Floor Calculation (private)
with FA13A00_1.FA13A00_3;                 -- Move Elevator
with FA13A00_1.FA13A00_3;                 -- Move Elevator
use  FA13A00_0;
use  FA13A00_0;
package body FA13A00_1.CA13A01_4 is
package body FA13A00_1.CA13A01_4 is
   procedure Check_System is separate;
   procedure Check_System is separate;
end FA13A00_1.CA13A01_4;
end FA13A00_1.CA13A01_4;
     --==================================================================--
     --==================================================================--
separate (FA13A00_1.CA13A01_4)
separate (FA13A00_1.CA13A01_4)
-- Subunit Check_System declared in Maintenance Operation.
-- Subunit Check_System declared in Maintenance Operation.
procedure Check_System is
procedure Check_System is
begin
begin
   -- See if regular power is on.
   -- See if regular power is on.
   if Power /= V120 then                  -- Reference package with'ed by
   if Power /= V120 then                  -- Reference package with'ed by
      TC_Operation := false;              -- the subunit parent's body.
      TC_Operation := false;              -- the subunit parent's body.
   end if;
   end if;
   -- Test elevator function.
   -- Test elevator function.
   FA13A00_1.FA13A00_3.Move_Elevator      -- Reference public sibling of
   FA13A00_1.FA13A00_3.Move_Elevator      -- Reference public sibling of
     (Penthouse, Call_Waiting);           -- the subunit parent's body.
     (Penthouse, Call_Waiting);           -- the subunit parent's body.
   if not Call_Waiting (Penthouse) then   -- Reference private part of the
   if not Call_Waiting (Penthouse) then   -- Reference private part of the
      TC_Operation := false;              -- parent of the subunit package's
      TC_Operation := false;              -- parent of the subunit package's
                                          -- body.
                                          -- body.
   end if;
   end if;
   FA13A00_1.FA13A00_2.Down (One_Floor);  -- Reference private sibling of
   FA13A00_1.FA13A00_2.Down (One_Floor);  -- Reference private sibling of
                                          -- the subunit parent's body.
                                          -- the subunit parent's body.
   if Current_Floor /= Floor'pred (Penthouse) then
   if Current_Floor /= Floor'pred (Penthouse) then
      TC_Operation := false;              -- Reference type declared in the
      TC_Operation := false;              -- Reference type declared in the
   end if;                                -- parent of the subunit parent's
   end if;                                -- parent of the subunit parent's
                                          -- body.
                                          -- body.
end Check_System;
end Check_System;
     --==================================================================--
     --==================================================================--
-- Public child package of an elevator application.  This package provides
-- Public child package of an elevator application.  This package provides
-- an emergency operation.
-- an emergency operation.
package FA13A00_1.CA13A01_5 is            -- Emergency Operation
package FA13A00_1.CA13A01_5 is            -- Emergency Operation
   -- Other type definitions in real application.
   -- Other type definitions in real application.
   procedure Emergency;
   procedure Emergency;
private
private
   type Bell_Type is (Inactive, Active);
   type Bell_Type is (Inactive, Active);
end FA13A00_1.CA13A01_5;
end FA13A00_1.CA13A01_5;
     --==================================================================--
     --==================================================================--
-- Context clauses required for visibility needed by separate subunit.
-- Context clauses required for visibility needed by separate subunit.
with FA13A00_0;                           -- Building Manager
with FA13A00_0;                           -- Building Manager
with FA13A00_1.FA13A00_3;                 -- Move Elevator
with FA13A00_1.FA13A00_3;                 -- Move Elevator
with FA13A00_1.CA13A01_4;                 -- Maintenance Operation (private)
with FA13A00_1.CA13A01_4;                 -- Maintenance Operation (private)
use  FA13A00_0;
use  FA13A00_0;
package body FA13A00_1.CA13A01_5 is
package body FA13A00_1.CA13A01_5 is
   procedure Emergency is separate;
   procedure Emergency is separate;
end FA13A00_1.CA13A01_5;
end FA13A00_1.CA13A01_5;
     --==================================================================--
     --==================================================================--
separate (FA13A00_1.CA13A01_5)
separate (FA13A00_1.CA13A01_5)
-- Subunit Emergency declared in Maintenance Operation.
-- Subunit Emergency declared in Maintenance Operation.
procedure Emergency is
procedure Emergency is
   Bell : Bell_Type;                      -- Reference type declared in the
   Bell : Bell_Type;                      -- Reference type declared in the
                                          -- subunit parent's body.
                                          -- subunit parent's body.
begin
begin
   -- Calls maintenance operation.
   -- Calls maintenance operation.
   FA13A00_1.CA13A01_4.Check_System;      -- Reference private sibling of the
   FA13A00_1.CA13A01_4.Check_System;      -- Reference private sibling of the
                                          -- subunit parent 's body.
                                          -- subunit parent 's body.
   -- Clear all calls to the elevator.
   -- Clear all calls to the elevator.
   Clear_Calls (Call_Waiting);            -- Reference subprogram declared
   Clear_Calls (Call_Waiting);            -- Reference subprogram declared
                                          -- in the parent of the subunit
                                          -- in the parent of the subunit
                                          -- parent's body.
                                          -- parent's body.
   for I in Floor loop
   for I in Floor loop
      if Call_Waiting (I) then            -- Reference private part of the
      if Call_Waiting (I) then            -- Reference private part of the
        TC_Operation := false;            -- parent of the subunit parent's
        TC_Operation := false;            -- parent of the subunit parent's
      end if;                             -- body.
      end if;                             -- body.
   end loop;
   end loop;
   -- Move elevator to the basement.
   -- Move elevator to the basement.
   FA13A00_1.FA13A00_3.Move_Elevator      -- Reference public sibling of the
   FA13A00_1.FA13A00_3.Move_Elevator      -- Reference public sibling of the
     (Basement, Call_Waiting);            -- subunit parent's body.
     (Basement, Call_Waiting);            -- subunit parent's body.
   if Current_Floor /= Basement then      -- Reference type declared in the
   if Current_Floor /= Basement then      -- Reference type declared in the
      TC_Operation := false;              -- parent of the subunit parent's
      TC_Operation := false;              -- parent of the subunit parent's
   end if;                                -- body.
   end if;                                -- body.
   -- Shut off power.
   -- Shut off power.
   Power := Off;                          -- Reference package with'ed by
   Power := Off;                          -- Reference package with'ed by
                                          -- the subunit parent's body.
                                          -- the subunit parent's body.
   -- Activate bell.
   -- Activate bell.
   Bell := Active;                        -- Reference type declared in the
   Bell := Active;                        -- Reference type declared in the
                                          -- subunit parent's body.
                                          -- subunit parent's body.
end Emergency;
end Emergency;
     --==================================================================--
     --==================================================================--
-- Public child subprogram of an elevator application.  This subprogram
-- Public child subprogram of an elevator application.  This subprogram
-- provides an express operation.
-- provides an express operation.
procedure FA13A00_1.CA13A01_6;
procedure FA13A00_1.CA13A01_6;
     --==================================================================--
     --==================================================================--
-- Context clauses required for visibility needed by separate subunit.
-- Context clauses required for visibility needed by separate subunit.
with FA13A00_0;                           -- Building Manager
with FA13A00_0;                           -- Building Manager
with FA13A00_1.FA13A00_2;                 -- Floor Calculation (private)
with FA13A00_1.FA13A00_2;                 -- Floor Calculation (private)
with FA13A00_1.FA13A00_3;                 -- Move Elevator
with FA13A00_1.FA13A00_3;                 -- Move Elevator
use  FA13A00_0;
use  FA13A00_0;
procedure FA13A00_1.CA13A01_6 is          -- Express Operation
procedure FA13A00_1.CA13A01_6 is          -- Express Operation
   -- Other type definitions in real application.
   -- Other type definitions in real application.
   procedure GoTo_Penthouse is separate;
   procedure GoTo_Penthouse is separate;
begin
begin
   GoTo_Penthouse;
   GoTo_Penthouse;
end FA13A00_1.CA13A01_6;
end FA13A00_1.CA13A01_6;
     --==================================================================--
     --==================================================================--
separate (FA13A00_1.CA13A01_6)
separate (FA13A00_1.CA13A01_6)
-- Subunit GoTo_Penthouse declared in Express Operation.
-- Subunit GoTo_Penthouse declared in Express Operation.
procedure GoTo_Penthouse is
procedure GoTo_Penthouse is
begin
begin
   -- Go faster.
   -- Go faster.
   Power := V240;                         -- Reference package with'ed by
   Power := V240;                         -- Reference package with'ed by
                                          -- the subunit parent's body.
                                          -- the subunit parent's body.
   -- Call elevator.
   -- Call elevator.
   Call (Penthouse, Call_Waiting);        -- Reference subprogram declared in
   Call (Penthouse, Call_Waiting);        -- Reference subprogram declared in
                                          -- the parent of the subunit
                                          -- the parent of the subunit
                                          -- parent's body.
                                          -- parent's body.
   if not Call_Waiting (Penthouse) then   -- Reference private part of the
   if not Call_Waiting (Penthouse) then   -- Reference private part of the
      TC_Operation := false;              -- parent of the subunit parent's
      TC_Operation := false;              -- parent of the subunit parent's
   end if;                                -- body.
   end if;                                -- body.
   -- Move elevator to Penthouse.
   -- Move elevator to Penthouse.
   FA13A00_1.FA13A00_3.Move_Elevator      -- Reference public sibling of the
   FA13A00_1.FA13A00_3.Move_Elevator      -- Reference public sibling of the
     (Penthouse, Call_Waiting);           -- subunit parent's body.
     (Penthouse, Call_Waiting);           -- subunit parent's body.
   if Current_Floor /= Penthouse then     -- Reference type declared in the
   if Current_Floor /= Penthouse then     -- Reference type declared in the
      TC_Operation := false;              -- parent of the subunit parent's
      TC_Operation := false;              -- parent of the subunit parent's
   end if;                                -- body.
   end if;                                -- body.
   -- Return slowly
   -- Return slowly
   while Current_Floor /= Floor1 loop     -- Reference type, subprogram
   while Current_Floor /= Floor1 loop     -- Reference type, subprogram
      FA13A00_1.FA13A00_2.Down (1);       -- declared in the parent of the
      FA13A00_1.FA13A00_2.Down (1);       -- declared in the parent of the
                                          -- subunit parent's body.
                                          -- subunit parent's body.
   end loop;
   end loop;
   if Current_Floor /= Floor1 then        -- Reference type declared in
   if Current_Floor /= Floor1 then        -- Reference type declared in
      TC_Operation := false;              -- the parent of the subunit
      TC_Operation := false;              -- the parent of the subunit
   end if;                                -- parent's body.
   end if;                                -- parent's body.
   -- Back to normal.
   -- Back to normal.
   Power := V120;                         -- Reference package with'ed by
   Power := V120;                         -- Reference package with'ed by
                                          -- the subunit parent's body.
                                          -- the subunit parent's body.
end GoTo_Penthouse;
end GoTo_Penthouse;
     --==================================================================--
     --==================================================================--
with FA13A00_1.CA13A01_5;                 -- Emergency Operation
with FA13A00_1.CA13A01_5;                 -- Emergency Operation
                                          -- implicitly with Basic Elevator
                                          -- implicitly with Basic Elevator
                                          -- Operations
                                          -- Operations
with FA13A00_1.CA13A01_6;                 -- Express Operation
with FA13A00_1.CA13A01_6;                 -- Express Operation
with Report;
with Report;
procedure CA13A01 is
procedure CA13A01 is
begin
begin
   Report.Test ("CA13A01", "Check that subunits declared in non-generic " &
   Report.Test ("CA13A01", "Check that subunits declared in non-generic " &
                "child units of a public parent have the same visibility " &
                "child units of a public parent have the same visibility " &
                "into its parent, its parent's siblings, and packages on " &
                "into its parent, its parent's siblings, and packages on " &
                "which its parent depends");
                "which its parent depends");
   -- Go to Penthouse.
   -- Go to Penthouse.
   FA13A00_1.CA13A01_6;
   FA13A00_1.CA13A01_6;
   -- Call emergency operation.
   -- Call emergency operation.
   FA13A00_1.CA13A01_5.Emergency;
   FA13A00_1.CA13A01_5.Emergency;
   if not FA13A00_1.TC_Operation then
   if not FA13A00_1.TC_Operation then
      Report.Failed ("Incorrect elevator operation");
      Report.Failed ("Incorrect elevator operation");
   end if;
   end if;
   Report.Result;
   Report.Result;
end CA13A01;
end CA13A01;
 
 

powered by: WebSVN 2.1.0

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