OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [ca/] [ca13a02.a] - Diff between revs 294 and 338

Only display areas with differences | Details | Blame | View Log

Rev 294 Rev 338
-- CA13A02.A
-- CA13A02.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 generic child units of a public
--      Check that subunits declared in 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 outside elevator button operation as a subunit in a
--      Declare an outside elevator button operation as a subunit in a
--      generic child package of the basic operation package (FA13A00.A).
--      generic child package of the basic operation package (FA13A00.A).
--      This procedure has visibility into its parent ancestor and its
--      This procedure has visibility into its parent ancestor and its
--      private sibling.
--      private sibling.
--
--
--      In the main program, instantiate the child package. Check that
--      In the main program, instantiate the child package. Check that
--      subunits perform as expected.
--      subunits perform as expected.
--
--
-- TEST FILES:
-- TEST FILES:
--      The following files comprise this test:
--      The following files comprise this test:
--
--
--         FA13A00.A
--         FA13A00.A
--         CA13A02.A
--         CA13A02.A
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--
--
--!
--!
-- Public generic child package of an elevator application.  This package
-- Public generic child package of an elevator application.  This package
-- provides outside elevator button operations.
-- provides outside elevator button operations.
generic                           -- Instantiate once for each floor.
generic                           -- Instantiate once for each floor.
   Our_Floor : in Floor;          -- Reference type declared in parent.
   Our_Floor : in Floor;          -- Reference type declared in parent.
package FA13A00_1.CA13A02_4 is    -- Outside Elevator Button Operations
package FA13A00_1.CA13A02_4 is    -- Outside Elevator Button Operations
   type Light is (Up, Down, Express, Off);
   type Light is (Up, Down, Express, Off);
   type Direction is (Up, Down, Express);
   type Direction is (Up, Down, Express);
   function Call_Elevator (D : Direction) return Light;
   function Call_Elevator (D : Direction) return Light;
   -- other type definitions and procedure declarations in real application.
   -- other type definitions and procedure declarations in real application.
end FA13A00_1.CA13A02_4;
end FA13A00_1.CA13A02_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.CA13A02_4 is
package body FA13A00_1.CA13A02_4 is
   function Call_Elevator (D : Direction) return Light is separate;
   function Call_Elevator (D : Direction) return Light is separate;
end FA13A00_1.CA13A02_4;
end FA13A00_1.CA13A02_4;
     --==================================================================--
     --==================================================================--
separate (FA13A00_1.CA13A02_4)
separate (FA13A00_1.CA13A02_4)
-- Subunit Call_Elevator declared in Outside Elevator Button Operations.
-- Subunit Call_Elevator declared in Outside Elevator Button Operations.
function Call_Elevator (D : Direction) return Light is
function Call_Elevator (D : Direction) return Light is
   Elevator_Button : Light;
   Elevator_Button : Light;
begin
begin
   -- See if power is on.
   -- See if power is on.
   if Power = Off then                       -- Reference package with'ed by
   if Power = Off then                       -- Reference package with'ed by
      Elevator_Button := Off;                -- the subunit parent's body.
      Elevator_Button := Off;                -- the subunit parent's body.
   else
   else
      case D is
      case D is
         when Express =>
         when Express =>
            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.
            Elevator_Button := Express;
            Elevator_Button := Express;
         when Up      =>
         when Up      =>
            if Current_Floor < Our_Floor then
            if Current_Floor < Our_Floor then
               FA13A00_1.FA13A00_2.Up         -- Reference private sibling of
               FA13A00_1.FA13A00_2.Up         -- Reference private sibling of
                 (Floor'pos (Our_Floor)       -- the subunit parent's body.
                 (Floor'pos (Our_Floor)       -- the subunit parent's body.
                   - Floor'pos (Current_Floor));
                   - Floor'pos (Current_Floor));
            else
            else
               FA13A00_1.FA13A00_2.Down       -- Reference private sibling of
               FA13A00_1.FA13A00_2.Down       -- Reference private sibling of
                 (Floor'pos (Current_Floor)   -- the subunit parent's body.
                 (Floor'pos (Current_Floor)   -- the subunit parent's body.
                   - Floor'pos (Our_Floor));
                   - Floor'pos (Our_Floor));
            end if;
            end if;
            -- Call elevator.
            -- Call elevator.
            Call
            Call
              (Current_Floor, Call_Waiting);  -- Reference subprogram declared
              (Current_Floor, Call_Waiting);  -- Reference subprogram declared
                                              -- in the parent of the subunit
                                              -- in the parent of the subunit
                                              -- parent's body.
                                              -- parent's body.
            Elevator_Button := Up;
            Elevator_Button := Up;
         when Down    =>
         when Down    =>
            if Current_Floor > Our_Floor then
            if Current_Floor > Our_Floor then
               FA13A00_1.FA13A00_2.Down       -- Reference private sibling of
               FA13A00_1.FA13A00_2.Down       -- Reference private sibling of
                 (Floor'pos (Current_Floor)   -- the subunit parent's body.
                 (Floor'pos (Current_Floor)   -- the subunit parent's body.
                   - Floor'pos (Our_Floor));
                   - Floor'pos (Our_Floor));
            else
            else
               FA13A00_1.FA13A00_2.Up         -- Reference private sibling of
               FA13A00_1.FA13A00_2.Up         -- Reference private sibling of
                 (Floor'pos (Our_Floor)       -- the subunit parent's body.
                 (Floor'pos (Our_Floor)       -- the subunit parent's body.
                   - Floor'pos (Current_Floor));
                   - Floor'pos (Current_Floor));
            end if;
            end if;
            Elevator_Button := Down;
            Elevator_Button := Down;
            -- Call elevator.
            -- Call elevator.
            Call
            Call
              (Current_Floor, Call_Waiting);  -- Reference subprogram declared
              (Current_Floor, Call_Waiting);  -- Reference subprogram declared
                                              -- in the parent of the subunit
                                              -- in the parent of the subunit
                                              -- parent's body.
                                              -- parent's body.
      end case;
      end case;
      if not Call_Waiting (Current_Floor)     -- Reference private part of the
      if not Call_Waiting (Current_Floor)     -- Reference private part of the
      then                                    -- parent of the subunit parent's
      then                                    -- parent of the subunit parent's
                                              -- body.
                                              -- body.
         TC_Operation := false;
         TC_Operation := false;
      end if;
      end if;
   end if;
   end if;
   return Elevator_Button;
   return Elevator_Button;
end Call_Elevator;
end Call_Elevator;
     --==================================================================--
     --==================================================================--
with FA13A00_1.CA13A02_4;         -- Outside Elevator Button Operations
with FA13A00_1.CA13A02_4;         -- Outside Elevator Button Operations
                                  -- implicitly with Basic Elevator
                                  -- implicitly with Basic Elevator
                                  -- Operations
                                  -- Operations
with Report;
with Report;
procedure CA13A02 is
procedure CA13A02 is
begin
begin
   Report.Test ("CA13A02", "Check that subunits declared in generic child " &
   Report.Test ("CA13A02", "Check that subunits declared in generic child " &
                "units of a public parent have the same visibility into " &
                "units of a public parent have the same visibility into " &
                "its parent, its parent's siblings, and packages on " &
                "its parent, its parent's siblings, and packages on " &
                "which its parent depends");
                "which its parent depends");
-- Going from floor one to penthouse.
-- Going from floor one to penthouse.
   Going_To_Penthouse:
   Going_To_Penthouse:
   declare
   declare
      -- Declare instance of the child generic elevator package for penthouse.
      -- Declare instance of the child generic elevator package for penthouse.
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
        (FA13A00_1.Penthouse);
        (FA13A00_1.Penthouse);
      use Call_Elevator_Pkg;
      use Call_Elevator_Pkg;
      Call_Button_Light : Light;
      Call_Button_Light : Light;
   begin
   begin
      Call_Button_Light := Call_Elevator (Express);
      Call_Button_Light := Call_Elevator (Express);
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Express then
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Express then
         Report.Failed ("Incorrect elevator operation going to penthouse");
         Report.Failed ("Incorrect elevator operation going to penthouse");
      end if;
      end if;
   end Going_To_Penthouse;
   end Going_To_Penthouse;
-- Going from penthouse to basement.
-- Going from penthouse to basement.
   Going_To_Basement:
   Going_To_Basement:
   declare
   declare
      -- Declare instance of the child generic elevator package for basement.
      -- Declare instance of the child generic elevator package for basement.
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
        (FA13A00_1.Basement);
        (FA13A00_1.Basement);
      use Call_Elevator_Pkg;
      use Call_Elevator_Pkg;
      Call_Button_Light : Light;
      Call_Button_Light : Light;
   begin
   begin
      Call_Button_Light := Call_Elevator (Down);
      Call_Button_Light := Call_Elevator (Down);
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Down then
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Down then
         Report.Failed ("Incorrect elevator operation going to basement");
         Report.Failed ("Incorrect elevator operation going to basement");
      end if;
      end if;
   end Going_To_Basement;
   end Going_To_Basement;
-- Going from basement to floor three.
-- Going from basement to floor three.
   Going_To_Floor3:
   Going_To_Floor3:
   declare
   declare
      -- Declare instance of the child generic elevator package for floor
      -- Declare instance of the child generic elevator package for floor
      -- three.
      -- three.
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
        (FA13A00_1.Floor3);
        (FA13A00_1.Floor3);
      use Call_Elevator_Pkg;
      use Call_Elevator_Pkg;
      Call_Button_Light : Light;
      Call_Button_Light : Light;
   begin
   begin
      Call_Button_Light := Call_Elevator (Up);
      Call_Button_Light := Call_Elevator (Up);
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Up then
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Up then
         Report.Failed ("Incorrect elevator operation going to floor 3");
         Report.Failed ("Incorrect elevator operation going to floor 3");
      end if;
      end if;
   end Going_To_Floor3;
   end Going_To_Floor3;
-- Going from floor three to floor two.
-- Going from floor three to floor two.
   Going_To_Floor2:
   Going_To_Floor2:
   declare
   declare
      -- Declare instance of the child generic elevator package for floor two.
      -- Declare instance of the child generic elevator package for floor two.
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
        (FA13A00_1.Floor2);
        (FA13A00_1.Floor2);
      use Call_Elevator_Pkg;
      use Call_Elevator_Pkg;
      Call_Button_Light : Light;
      Call_Button_Light : Light;
   begin
   begin
      Call_Button_Light := Call_Elevator (Up);
      Call_Button_Light := Call_Elevator (Up);
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Up then
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Up then
         Report.Failed ("Incorrect elevator operation going to floor 2");
         Report.Failed ("Incorrect elevator operation going to floor 2");
      end if;
      end if;
   end Going_To_Floor2;
   end Going_To_Floor2;
-- Going to floor one.
-- Going to floor one.
   Going_To_Floor1:
   Going_To_Floor1:
   declare
   declare
      -- Declare instance of the child generic elevator package for floor one.
      -- Declare instance of the child generic elevator package for floor one.
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
      package Call_Elevator_Pkg is new FA13A00_1.CA13A02_4
        (FA13A00_1.Floor1);
        (FA13A00_1.Floor1);
      use Call_Elevator_Pkg;
      use Call_Elevator_Pkg;
      Call_Button_Light : Light;
      Call_Button_Light : Light;
   begin
   begin
      -- Calling elevator from floor one.
      -- Calling elevator from floor one.
      FA13A00_1.Current_Floor := FA13A00_1.Floor1;
      FA13A00_1.Current_Floor := FA13A00_1.Floor1;
      Call_Button_Light := Call_Elevator (Down);
      Call_Button_Light := Call_Elevator (Down);
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Down then
      if not FA13A00_1.TC_Operation or Call_Button_Light /= Down then
         Report.Failed ("Incorrect elevator operation going to floor 1");
         Report.Failed ("Incorrect elevator operation going to floor 1");
      end if;
      end if;
   end Going_To_Floor1;
   end Going_To_Floor1;
   Report.Result;
   Report.Result;
end CA13A02;
end CA13A02;
 
 

powered by: WebSVN 2.1.0

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