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.0rc2/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [c3/] [c3900053.am] - Diff between revs 294 and 384

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

Rev 294 Rev 384
-- C3900053.AM
-- C3900053.AM
--
--
--                             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 a private tagged type declared in a package specification
--      Check that a private tagged type declared in a package specification
--      may be extended with a private extension in a different package
--      may be extended with a private extension in a different package
--      specification, and that this private extension may in turn be extended
--      specification, and that this private extension may in turn be extended
--      by a private extension in a third package.
--      by a private extension in a third package.
--
--
--      Check that each derivative inherits the user-defined primitive
--      Check that each derivative inherits the user-defined primitive
--      subprograms of its parent (including those that its parent inherited),
--      subprograms of its parent (including those that its parent inherited),
--      that it may override these inherited primitive subprograms, and that it
--      that it may override these inherited primitive subprograms, and that it
--      may also declare its own primitive subprograms.
--      may also declare its own primitive subprograms.
--
--
--      Check that type conversion is defined from a type extension to its
--      Check that type conversion is defined from a type extension to its
--      parent, and that this parent itself may be a type extension.
--      parent, and that this parent itself may be a type extension.
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      Declare a root tagged private type and two associated primitive
--      Declare a root tagged private type and two associated primitive
--      subprograms in a package specification. Declare operations to verify
--      subprograms in a package specification. Declare operations to verify
--      the correctness of the components. Declare operations which return
--      the correctness of the components. Declare operations which return
--      values of the type's private components, and which will be
--      values of the type's private components, and which will be
--      inherited by later derivatives.
--      inherited by later derivatives.
--
--
--      Extend the root type with a private extension in a second package
--      Extend the root type with a private extension in a second package
--      specification. Declare a new primitive subprogram for the extension,
--      specification. Declare a new primitive subprogram for the extension,
--      and override one of the two inherited subprograms. Within the
--      and override one of the two inherited subprograms. Within the
--      overriding subprogram, utilize type conversion to call the parent's
--      overriding subprogram, utilize type conversion to call the parent's
--      implementation of the same subprogram. Also within the overriding
--      implementation of the same subprogram. Also within the overriding
--      subprogram, call the new primitive subprogram and each inherited
--      subprogram, call the new primitive subprogram and each inherited
--      subprogram. Declare operations of the private extension which
--      subprogram. Declare operations of the private extension which
--      override the verification operations of its parent. Declare operations
--      override the verification operations of its parent. Declare operations
--      of the private extension which return values of the extension's
--      of the private extension which return values of the extension's
--      private components, and which will be inherited by later derivatives.
--      private components, and which will be inherited by later derivatives.
--
--
--      Extend the extension with a private extension in a third package
--      Extend the extension with a private extension in a third package
--      specification. Declare a new primitive subprogram for this private
--      specification. Declare a new primitive subprogram for this private
--      extension, and override one of the three inherited subprograms.
--      extension, and override one of the three inherited subprograms.
--      Within the overriding subprogram, utilize type conversion to call the
--      Within the overriding subprogram, utilize type conversion to call the
--      parent's implementation of the same subprogram. Also within the
--      parent's implementation of the same subprogram. Also within the
--      overriding subprogram, call the new primitive subprogram and each
--      overriding subprogram, call the new primitive subprogram and each
--      inherited subprogram. Declare operations of the private extension
--      inherited subprogram. Declare operations of the private extension
--      which override the verification operations of its parent.
--      which override the verification operations of its parent.
--
--
--      In the main program, declare objects of the root tagged type and
--      In the main program, declare objects of the root tagged type and
--      the two type extensions. For each object, call the overriding
--      the two type extensions. For each object, call the overriding
--      subprogram, and verify the correctness of the components by calling
--      subprogram, and verify the correctness of the components by calling
--      the verification operations.
--      the verification operations.
--
--
-- TEST FILES:
-- TEST FILES:
--      This test consists of the following files:
--      This test consists of the following files:
--
--
--         C3900050.A
--         C3900050.A
--         C3900051.A
--         C3900051.A
--         C3900052.A
--         C3900052.A
--      => C3900053.AM
--      => C3900053.AM
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--      15 May 96   SAIC    ACVC 2.1: Modified prologue.
--      15 May 96   SAIC    ACVC 2.1: Modified prologue.
--
--
--!
--!
with Report;
with Report;
with C3900050; -- Basic alert abstraction.
with C3900050; -- Basic alert abstraction.
with C3900051; -- Extended alert abstraction.
with C3900051; -- Extended alert abstraction.
with C3900052; -- Further extended alert abstraction.
with C3900052; -- Further extended alert abstraction.
use  C3900050; -- Primitive operations of Alert_Type directly visible.
use  C3900050; -- Primitive operations of Alert_Type directly visible.
procedure C3900053 is
procedure C3900053 is
begin
begin
   Report.Test ("C390005", "Primitive operation inheritance by type " &
   Report.Test ("C390005", "Primitive operation inheritance by type " &
                "extensions: root type is private; all extensions are " &
                "extensions: root type is private; all extensions are " &
                "private and declared in different packages");
                "private and declared in different packages");
   ALERT_SUBTEST: -------------------------------------------------------------
   ALERT_SUBTEST: -------------------------------------------------------------
      declare
      declare
         Alarm : C3900050.Alert_Type;     -- Root tagged private type.
         Alarm : C3900050.Alert_Type;     -- Root tagged private type.
      begin
      begin
         if not Initial_Values_Okay (Alarm) then
         if not Initial_Values_Okay (Alarm) then
            Report.Failed ("Wrong initial values for Alert_Type");
            Report.Failed ("Wrong initial values for Alert_Type");
         end if;
         end if;
         Handle (Alarm);
         Handle (Alarm);
         if Bad_Final_Values (Alarm) then
         if Bad_Final_Values (Alarm) then
            Report.Failed ("Wrong values for Alert_Type after Handle");
            Report.Failed ("Wrong values for Alert_Type after Handle");
         end if;
         end if;
      end Alert_Subtest;
      end Alert_Subtest;
   -- Check intermediate display counts:
   -- Check intermediate display counts:
   if C3900050.Display_Count_For (Null_Device) /= 1 or
   if C3900050.Display_Count_For (Null_Device) /= 1 or
      C3900050.Display_Count_For (Teletype)    /= 0 or
      C3900050.Display_Count_For (Teletype)    /= 0 or
      C3900050.Display_Count_For (Console)     /= 0 or
      C3900050.Display_Count_For (Console)     /= 0 or
      C3900050.Display_Count_For (Big_Screen)  /= 0
      C3900050.Display_Count_For (Big_Screen)  /= 0
   then
   then
      Report.Failed ("Wrong display counts after Alert_Type");
      Report.Failed ("Wrong display counts after Alert_Type");
   end if;
   end if;
   LOW_ALERT_SUBTEST: ---------------------------------------------------------
   LOW_ALERT_SUBTEST: ---------------------------------------------------------
      declare
      declare
         Low_Alarm : C3900051.Low_Alert_Type; -- Priv. ext. of tagged type.
         Low_Alarm : C3900051.Low_Alert_Type; -- Priv. ext. of tagged type.
         use C3900051; -- Primitive operations of extension directly visible.
         use C3900051; -- Primitive operations of extension directly visible.
      begin
      begin
         if not Initial_Values_Okay (Low_Alarm) then
         if not Initial_Values_Okay (Low_Alarm) then
            Report.Failed ("Wrong initial values for Low_Alert_Type");
            Report.Failed ("Wrong initial values for Low_Alert_Type");
         end if;
         end if;
         Handle (Low_Alarm);
         Handle (Low_Alarm);
         if Bad_Final_Values (Low_Alarm) then
         if Bad_Final_Values (Low_Alarm) then
            Report.Failed ("Wrong values for Low_Alert_Type after Handle");
            Report.Failed ("Wrong values for Low_Alert_Type after Handle");
         end if;
         end if;
      end Low_Alert_Subtest;
      end Low_Alert_Subtest;
   -- Check intermediate display counts:
   -- Check intermediate display counts:
   if C3900050.Display_Count_For /= (Null_Device => 2,
   if C3900050.Display_Count_For /= (Null_Device => 2,
                                     Teletype    => 1,
                                     Teletype    => 1,
                                     Console     => 0,
                                     Console     => 0,
                                     Big_Screen  => 0)
                                     Big_Screen  => 0)
   then
   then
      Report.Failed ("Wrong display counts after Low_Alert_Type");
      Report.Failed ("Wrong display counts after Low_Alert_Type");
   end if;
   end if;
   MEDIUM_ALERT_SUBTEST: ------------------------------------------------------
   MEDIUM_ALERT_SUBTEST: ------------------------------------------------------
      declare
      declare
         Medium_Alarm : C3900052.Medium_Alert_Type; -- Priv. ext. of extension.
         Medium_Alarm : C3900052.Medium_Alert_Type; -- Priv. ext. of extension.
         use C3900052; -- Primitive operations of extension directly visible.
         use C3900052; -- Primitive operations of extension directly visible.
      begin
      begin
         if not Initial_Values_Okay (Medium_Alarm) then
         if not Initial_Values_Okay (Medium_Alarm) then
            Report.Failed ("Wrong initial values for Medium_Alert_Type");
            Report.Failed ("Wrong initial values for Medium_Alert_Type");
         end if;
         end if;
         Handle (Medium_Alarm);
         Handle (Medium_Alarm);
         if Bad_Final_Values (Medium_Alarm) then
         if Bad_Final_Values (Medium_Alarm) then
            Report.Failed ("Wrong values for Medium_Alert_Type after Handle");
            Report.Failed ("Wrong values for Medium_Alert_Type after Handle");
         end if;
         end if;
      end Medium_Alert_Subtest;
      end Medium_Alert_Subtest;
   -- Check final display counts:
   -- Check final display counts:
   if C3900050.Display_Count_For /= (Null_Device => 3,
   if C3900050.Display_Count_For /= (Null_Device => 3,
                                     Teletype    => 2,
                                     Teletype    => 2,
                                     Console     => 1,
                                     Console     => 1,
                                     Big_Screen  => 0)
                                     Big_Screen  => 0)
   then
   then
      Report.Failed ("Wrong display counts after Medium_Alert_Type");
      Report.Failed ("Wrong display counts after Medium_Alert_Type");
   end if;
   end if;
   Report.Result;
   Report.Result;
end C3900053;
end C3900053;
 
 

powered by: WebSVN 2.1.0

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