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/] [cb/] [cb20a02.a] - Diff between revs 294 and 338

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

Rev 294 Rev 338
-- CB20A02.A
-- CB20A02.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 the name and pertinent information about a user defined
--      Check that the name and pertinent information about a user defined
--      exception are available to an enclosing program unit even when the
--      exception are available to an enclosing program unit even when the
--      enclosing unit has no visibility into the scope where the exception
--      enclosing unit has no visibility into the scope where the exception
--      is declared and raised.
--      is declared and raised.
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      Declare a subprogram nested within the test subprogram.  The enclosing
--      Declare a subprogram nested within the test subprogram.  The enclosing
--      subprogram does not have visibility into the nested subprogram.
--      subprogram does not have visibility into the nested subprogram.
--      Declare and raise an exception in the nested subprogram, and allow
--      Declare and raise an exception in the nested subprogram, and allow
--      the exception to propagate to the enclosing scope.  Use the function
--      the exception to propagate to the enclosing scope.  Use the function
--      Exception_Name in the enclosing subprogram to produce exception
--      Exception_Name in the enclosing subprogram to produce exception
--      specific information when the exception is handled in an others
--      specific information when the exception is handled in an others
--      handler.
--      handler.
--
--
-- TEST FILES:
-- TEST FILES:
--
--
--      This test depends on the following foundation code file:
--      This test depends on the following foundation code file:
--         FB20A00.A
--         FB20A00.A
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--
--
--!
--!
with FB20A00;             -- Package containing Function Find
with FB20A00;             -- Package containing Function Find
with Ada.Exceptions;
with Ada.Exceptions;
with Report;
with Report;
procedure CB20A02 is
procedure CB20A02 is
   Seed_Number   : Integer;
   Seed_Number   : Integer;
   Random_Number : Integer := 0;
   Random_Number : Integer := 0;
     --=================================================================--
     --=================================================================--
   function Random_Number_Generator (Seed : Integer) return Integer is
   function Random_Number_Generator (Seed : Integer) return Integer is
      Result : Integer := 0;
      Result : Integer := 0;
      HighSeedError,
      HighSeedError,
      Mid_Seed_Error,
      Mid_Seed_Error,
      L_o_w_S_e_e_d_E_r_r_o_r : exception;
      L_o_w_S_e_e_d_E_r_r_o_r : exception;
   begin  -- Random_Number_Generator
   begin  -- Random_Number_Generator
      if (Report.Ident_Int (Seed)    > 1000) then
      if (Report.Ident_Int (Seed)    > 1000) then
         raise HighSeedError;
         raise HighSeedError;
      elsif (Report.Ident_Int (Seed) >  100) then
      elsif (Report.Ident_Int (Seed) >  100) then
         raise Mid_Seed_Error;
         raise Mid_Seed_Error;
      elsif (Report.Ident_Int (Seed) >   10) then
      elsif (Report.Ident_Int (Seed) >   10) then
         raise L_o_w_S_e_e_d_E_r_r_o_r;
         raise L_o_w_S_e_e_d_E_r_r_o_r;
      else
      else
         Seed_Number := ((Seed_Number * 417) + 231) mod 53;
         Seed_Number := ((Seed_Number * 417) + 231) mod 53;
         Result := Seed_Number / 52;
         Result := Seed_Number / 52;
      end if;
      end if;
      return Result;
      return Result;
   end Random_Number_Generator;
   end Random_Number_Generator;
     --=================================================================--
     --=================================================================--
begin
begin
   Report.Test ("CB20A02", "Check that the name "                        &
   Report.Test ("CB20A02", "Check that the name "                        &
                           "of a user defined exception is available "   &
                           "of a user defined exception is available "   &
                           "to an enclosing program unit even when the " &
                           "to an enclosing program unit even when the " &
                           "enclosing unit has no visibility into the "  &
                           "enclosing unit has no visibility into the "  &
                           "scope where the exception is declared and "  &
                           "scope where the exception is declared and "  &
                           "raised" );
                           "raised" );
   High_Seed:
   High_Seed:
   begin
   begin
      -- This seed value will result in the raising of a HighSeedError
      -- This seed value will result in the raising of a HighSeedError
      -- exception.
      -- exception.
      Seed_Number   := 1001;
      Seed_Number   := 1001;
      Random_Number := Random_Number_Generator (Seed_Number);
      Random_Number := Random_Number_Generator (Seed_Number);
      Report.Failed ("Exception not raised in High_Seed block");
      Report.Failed ("Exception not raised in High_Seed block");
   exception
   exception
      when Error : others =>
      when Error : others =>
         if not FB20A00.Find (Ada.Exceptions.Exception_Name (Error),
         if not FB20A00.Find (Ada.Exceptions.Exception_Name (Error),
                              "HighSeedError")
                              "HighSeedError")
         then
         then
            Report.Failed ("Expected HighSeedError, but found " &
            Report.Failed ("Expected HighSeedError, but found " &
                            Ada.Exceptions.Exception_Name (Error));
                            Ada.Exceptions.Exception_Name (Error));
         end if;
         end if;
   end High_Seed;
   end High_Seed;
   Mid_Seed:
   Mid_Seed:
   begin
   begin
      -- This seed value will generate a Mid_Seed_Error exception.
      -- This seed value will generate a Mid_Seed_Error exception.
      Seed_Number   := 101;
      Seed_Number   := 101;
      Random_Number := Random_Number_Generator (Seed_Number);
      Random_Number := Random_Number_Generator (Seed_Number);
      Report.Failed ("Exception not raised in Mid_Seed block");
      Report.Failed ("Exception not raised in Mid_Seed block");
   exception
   exception
      when Error : others =>
      when Error : others =>
         if not FB20A00.Find (Ada.Exceptions.Exception_Name (Error),
         if not FB20A00.Find (Ada.Exceptions.Exception_Name (Error),
                              "Mid_Seed_Error")
                              "Mid_Seed_Error")
         then
         then
            Report.Failed ("Expected Mid_Seed_Error, but found " &
            Report.Failed ("Expected Mid_Seed_Error, but found " &
                            Ada.Exceptions.Exception_Name (Error));
                            Ada.Exceptions.Exception_Name (Error));
         end if;
         end if;
   end Mid_Seed;
   end Mid_Seed;
   Low_Seed:
   Low_Seed:
   begin
   begin
      -- This seed value will result in the raising of a
      -- This seed value will result in the raising of a
      -- L_o_w_S_e_e_d_E_r_r_o_r exception.
      -- L_o_w_S_e_e_d_E_r_r_o_r exception.
      Seed_Number   := 11;
      Seed_Number   := 11;
      Random_Number := Random_Number_Generator (Seed_Number);
      Random_Number := Random_Number_Generator (Seed_Number);
      Report.Failed ("Exception not raised in Low_Seed block");
      Report.Failed ("Exception not raised in Low_Seed block");
   exception
   exception
      when Error : others =>
      when Error : others =>
         if not FB20A00.Find (Ada.Exceptions.Exception_Name (Error),
         if not FB20A00.Find (Ada.Exceptions.Exception_Name (Error),
                              "L_o_w_S_e_e_d_E_r_r_o_r")
                              "L_o_w_S_e_e_d_E_r_r_o_r")
         then
         then
            Report.Failed ("Expected L_o_w_S_e_e_d_E_r_r_o_r but found " &
            Report.Failed ("Expected L_o_w_S_e_e_d_E_r_r_o_r but found " &
                            Ada.Exceptions.Exception_Name (Error));
                            Ada.Exceptions.Exception_Name (Error));
         end if;
         end if;
   end Low_Seed;
   end Low_Seed;
   Report.Result;
   Report.Result;
end CB20A02;
end CB20A02;
 
 

powered by: WebSVN 2.1.0

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