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

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

Rev 294 Rev 338
-- CXAA006.A
-- CXAA006.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 for a bounded line length text file of mode Append_File,
--      Check that for a bounded line length text file of mode Append_File,
--      when the number of characters to be output exceeds the number of
--      when the number of characters to be output exceeds the number of
--      columns remaining on the current line, a call to Put will output
--      columns remaining on the current line, a call to Put will output
--      characters of the string sufficient to fill the remaining columns of
--      characters of the string sufficient to fill the remaining columns of
--      the line (up to line length), then output a line terminator, reset the
--      the line (up to line length), then output a line terminator, reset the
--      column number, increment the line number, then output the balance of
--      column number, increment the line number, then output the balance of
--      the item.
--      the item.
--
--
--      Check that the procedure Put does not raise Layout_Error when the
--      Check that the procedure Put does not raise Layout_Error when the
--      number of characters to be output exceeds the line length of a bounded
--      number of characters to be output exceeds the line length of a bounded
--      text file of mode Append_File.
--      text file of mode Append_File.
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      This test demonstrates the situation where an application intends to
--      This test demonstrates the situation where an application intends to
--      output variable length string elements to a text file in the most
--      output variable length string elements to a text file in the most
--      efficient manner possible.  This is the case in a typesetting
--      efficient manner possible.  This is the case in a typesetting
--      environment where text is compressed and split between lines of a
--      environment where text is compressed and split between lines of a
--      bounded length.
--      bounded length.
--
--
--      The procedure Put will break string parameters placed in the file at
--      The procedure Put will break string parameters placed in the file at
--      the point of the line length.  Two examples are demonstrated in this
--      the point of the line length.  Two examples are demonstrated in this
--      test, one being the case where only one column remains on a line, and
--      test, one being the case where only one column remains on a line, and
--      the other being the case where a larger portion of the line remains
--      the other being the case where a larger portion of the line remains
--      unfilled, but still not sufficient to contain the entire output
--      unfilled, but still not sufficient to contain the entire output
--      string.
--      string.
--
--
--      During the course of the test, the file is reset to Append_File mode,
--      During the course of the test, the file is reset to Append_File mode,
--      and the bounded line length is modified for different lines of the
--      and the bounded line length is modified for different lines of the
--      file.
--      file.
--
--
-- APPLICABILITY CRITERIA:
-- APPLICABILITY CRITERIA:
--      This test is applicable to all implementations that support Text_IO
--      This test is applicable to all implementations that support Text_IO
--      processing and external files.
--      processing and external files.
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--      25 Feb 97   PWB.CTA Allowed for non-support of some IO operations
--      25 Feb 97   PWB.CTA Allowed for non-support of some IO operations
--!
--!
with Ada.Text_IO;
with Ada.Text_IO;
with Report;
with Report;
procedure CXAA006 is
procedure CXAA006 is
   A_Bounded_File    : Ada.Text_IO.File_Type;
   A_Bounded_File    : Ada.Text_IO.File_Type;
   Bounded_File_Name : constant String :=
   Bounded_File_Name : constant String :=
                       Report.Legal_File_Name ( Nam => "CXAA006" );
                       Report.Legal_File_Name ( Nam => "CXAA006" );
   Incomplete : exception;
   Incomplete : exception;
begin
begin
   Report.Test ("CXAA006", "Check that procedure Put will correctly " &
   Report.Test ("CXAA006", "Check that procedure Put will correctly " &
                           "output string items to a bounded line "   &
                           "output string items to a bounded line "   &
                           "length text file of mode Append_File");
                           "length text file of mode Append_File");
   Test_for_Text_IO_Support:
   Test_for_Text_IO_Support:
   begin
   begin
-- An application creates a text file in mode Append_File, with the intention
-- An application creates a text file in mode Append_File, with the intention
-- of using the procedure Put to compress variable length string data into the
-- of using the procedure Put to compress variable length string data into the
-- file in the most efficient manner possible.
-- file in the most efficient manner possible.
     Ada.Text_IO.Create (File => A_Bounded_File,
     Ada.Text_IO.Create (File => A_Bounded_File,
                         Mode => Ada.Text_IO.Append_File,
                         Mode => Ada.Text_IO.Append_File,
                         Name => Bounded_File_Name);
                         Name => Bounded_File_Name);
   exception
   exception
      when Ada.Text_IO.Use_Error | Ada.Text_IO.Name_Error =>
      when Ada.Text_IO.Use_Error | Ada.Text_IO.Name_Error =>
         Report.Not_Applicable
         Report.Not_Applicable
            ( "Files not supported - Create with Append_File for Text_IO" );
            ( "Files not supported - Create with Append_File for Text_IO" );
         raise Incomplete;
         raise Incomplete;
   end Test_For_Text_IO_Support;
   end Test_For_Text_IO_Support;
   Operational_Test_Block:
   Operational_Test_Block:
   declare
   declare
      Twelve_Characters   : constant String := "12Characters";
      Twelve_Characters   : constant String := "12Characters";
      Nineteen_Characters : constant String := "Nineteen_Characters";
      Nineteen_Characters : constant String := "Nineteen_Characters";
      TC_Line             : Natural := 0;
      TC_Line             : Natural := 0;
      function TC_Mode_Selection (Selector : Integer)
      function TC_Mode_Selection (Selector : Integer)
      return Ada.Text_IO.File_Mode is
      return Ada.Text_IO.File_Mode is
      begin
      begin
         case Selector is
         case Selector is
            when 1       => return Ada.Text_IO.In_File;
            when 1       => return Ada.Text_IO.In_File;
            when 2       => return Ada.Text_IO.Out_File;
            when 2       => return Ada.Text_IO.Out_File;
            when others  => return Ada.Text_IO.Append_File;
            when others  => return Ada.Text_IO.Append_File;
         end case;
         end case;
      end TC_Mode_Selection;
      end TC_Mode_Selection;
   begin
   begin
-- The application sets the line length of the file to be bound at 20.  All
-- The application sets the line length of the file to be bound at 20.  All
-- lines in this file will be limited to that length.
-- lines in this file will be limited to that length.
      Ada.Text_IO.Set_Line_Length (A_Bounded_File, 20);
      Ada.Text_IO.Set_Line_Length (A_Bounded_File, 20);
      Ada.Text_IO.Put (A_Bounded_File, Nineteen_Characters);
      Ada.Text_IO.Put (A_Bounded_File, Nineteen_Characters);
      -- Test control code.
      -- Test control code.
      if (Integer(Ada.Text_IO.Line (A_Bounded_File)) /=
      if (Integer(Ada.Text_IO.Line (A_Bounded_File)) /=
          Report.Ident_Int(1))                         or
          Report.Ident_Int(1))                         or
         (Integer(Ada.Text_IO.Col (A_Bounded_File))  /=
         (Integer(Ada.Text_IO.Col (A_Bounded_File))  /=
          Report.Ident_Int(20))                        then
          Report.Ident_Int(20))                        then
         Report.Failed ("Incorrect position after 1st Put");
         Report.Failed ("Incorrect position after 1st Put");
      end if;
      end if;
-- The application finds that there is only one column available on the
-- The application finds that there is only one column available on the
-- current line, so the next string item to be output must be broken at
-- current line, so the next string item to be output must be broken at
-- the appropriate place (following the first character).
-- the appropriate place (following the first character).
      Ada.Text_IO.Put (File => A_Bounded_File,
      Ada.Text_IO.Put (File => A_Bounded_File,
                       Item => Twelve_Characters);
                       Item => Twelve_Characters);
      -- Test control code.
      -- Test control code.
      if (Integer(Ada.Text_IO.Line (A_Bounded_File)) /=
      if (Integer(Ada.Text_IO.Line (A_Bounded_File)) /=
          Report.Ident_Int(2))                         or
          Report.Ident_Int(2))                         or
         (Integer(Ada.Text_IO.Col (A_Bounded_File))  /=
         (Integer(Ada.Text_IO.Col (A_Bounded_File))  /=
          Report.Ident_Int(12))                        then
          Report.Ident_Int(12))                        then
         Report.Failed ("Incorrect position after 2nd Put");
         Report.Failed ("Incorrect position after 2nd Put");
      end if;
      end if;
-- The application subsequently modifies the processing, resetting the file
-- The application subsequently modifies the processing, resetting the file
-- at this point to In_File mode in order to verify data that has been written
-- at this point to In_File mode in order to verify data that has been written
-- to the file. Following this, the application resets the file to Append_File
-- to the file. Following this, the application resets the file to Append_File
-- mode in order to continue the placement of data into the file, but modifies
-- mode in order to continue the placement of data into the file, but modifies
-- the original bounded line length for subsequent lines to be appended.
-- the original bounded line length for subsequent lines to be appended.
      -- Reset to Append mode; call outputs page terminator and
      -- Reset to Append mode; call outputs page terminator and
      -- resets line length to Unbounded.
      -- resets line length to Unbounded.
      Reset1:
      Reset1:
      begin
      begin
         Ada.Text_IO.Reset (A_Bounded_File,
         Ada.Text_IO.Reset (A_Bounded_File,
                            TC_Mode_Selection (Report.Ident_Int(3)));
                            TC_Mode_Selection (Report.Ident_Int(3)));
      exception
      exception
         when Ada.Text_IO.Use_Error =>
         when Ada.Text_IO.Use_Error =>
            Report.Not_Applicable
            Report.Not_Applicable
               ( "Reset to Append_File not supported for Text_IO" );
               ( "Reset to Append_File not supported for Text_IO" );
            raise Incomplete;
            raise Incomplete;
      end Reset1;
      end Reset1;
      Ada.Text_IO.Set_Line_Length (A_Bounded_File, 15);
      Ada.Text_IO.Set_Line_Length (A_Bounded_File, 15);
      -- Store line number for later comparison.
      -- Store line number for later comparison.
      TC_Line := Natural(Ada.Text_IO.Line(A_Bounded_File));
      TC_Line := Natural(Ada.Text_IO.Line(A_Bounded_File));
-- The application finds that fifteen columns are available on the current
-- The application finds that fifteen columns are available on the current
-- line but that the string item to be output exceeds this available space.
-- line but that the string item to be output exceeds this available space.
-- It must be split at the end of the line, and the balance placed on the
-- It must be split at the end of the line, and the balance placed on the
-- next file line.
-- next file line.
      Ada.Text_IO.Put (File => A_Bounded_File,
      Ada.Text_IO.Put (File => A_Bounded_File,
                       Item => Nineteen_Characters);
                       Item => Nineteen_Characters);
      -- Test control code.
      -- Test control code.
      -- Positioned on new line at col 5.
      -- Positioned on new line at col 5.
      if (Natural(Ada.Text_IO.Line (A_Bounded_File)) /=
      if (Natural(Ada.Text_IO.Line (A_Bounded_File)) /=
          (TC_Line + 1))                                 or
          (TC_Line + 1))                                 or
         (Integer(Ada.Text_IO.Col (A_Bounded_File))  /=
         (Integer(Ada.Text_IO.Col (A_Bounded_File))  /=
          Report.Ident_Int(5))                          then
          Report.Ident_Int(5))                          then
         Report.Failed ("Incorrect position after 3rd Put");
         Report.Failed ("Incorrect position after 3rd Put");
      end if;
      end if;
      Test_Verification_Block:
      Test_Verification_Block:
      declare
      declare
         First_String  : String (1 .. 80);
         First_String  : String (1 .. 80);
         Second_String : String (1 .. 80);
         Second_String : String (1 .. 80);
         Third_String  : String (1 .. 80);
         Third_String  : String (1 .. 80);
         Fourth_String : String (1 .. 80);
         Fourth_String : String (1 .. 80);
         TC_Width1     : Natural;
         TC_Width1     : Natural;
         TC_Width2     : Natural;
         TC_Width2     : Natural;
         TC_Width3     : Natural;
         TC_Width3     : Natural;
         TC_Width4     : Natural;
         TC_Width4     : Natural;
      begin
      begin
-- The application has the capability to reset the file to In_File mode to
-- The application has the capability to reset the file to In_File mode to
-- verify some or all of the data that is contained there.
-- verify some or all of the data that is contained there.
         Reset2:
         Reset2:
         begin
         begin
            Ada.Text_IO.Reset    (A_Bounded_File, Ada.Text_IO.In_File);
            Ada.Text_IO.Reset    (A_Bounded_File, Ada.Text_IO.In_File);
         exception
         exception
            when others =>
            when others =>
               Report.Not_Applicable
               Report.Not_Applicable
                  ( "Reset to In_File not supported for Text_IO" );
                  ( "Reset to In_File not supported for Text_IO" );
               raise Incomplete;
               raise Incomplete;
         end Reset2;
         end Reset2;
         Ada.Text_IO.Get_Line
         Ada.Text_IO.Get_Line
            (A_Bounded_File, First_String,  TC_Width1);
            (A_Bounded_File, First_String,  TC_Width1);
         Ada.Text_IO.Get_Line
         Ada.Text_IO.Get_Line
            (A_Bounded_File, Second_String, TC_Width2);
            (A_Bounded_File, Second_String, TC_Width2);
         Ada.Text_IO.Get_Line
         Ada.Text_IO.Get_Line
            (A_Bounded_File, Third_String,  TC_Width3);
            (A_Bounded_File, Third_String,  TC_Width3);
         Ada.Text_IO.Get_Line
         Ada.Text_IO.Get_Line
            (A_Bounded_File, Fourth_String, TC_Width4);
            (A_Bounded_File, Fourth_String, TC_Width4);
         -- Test control code.
         -- Test control code.
         if (First_String (1..TC_Width1) /= Nineteen_Characters & "1")  or
         if (First_String (1..TC_Width1) /= Nineteen_Characters & "1")  or
            (Second_String (1..TC_Width2) /= "2Characters")             or
            (Second_String (1..TC_Width2) /= "2Characters")             or
            (Third_String (1..TC_Width3)  /=
            (Third_String (1..TC_Width3)  /=
             Nineteen_Characters(1..15))                                or
             Nineteen_Characters(1..15))                                or
            (Fourth_String (1..TC_Width4) /= "ters")
            (Fourth_String (1..TC_Width4) /= "ters")
         then
         then
            Report.Failed ("Data placed incorrectly in file");
            Report.Failed ("Data placed incorrectly in file");
         end if;
         end if;
      exception
      exception
         when Incomplete =>
         when Incomplete =>
            raise;
            raise;
         when Ada.Text_IO.End_Error =>
         when Ada.Text_IO.End_Error =>
            Report.Failed ("Incorrect number of lines in file");
            Report.Failed ("Incorrect number of lines in file");
         when others            =>
         when others            =>
            Report.Failed ("Error raised during data verification");
            Report.Failed ("Error raised during data verification");
      end Test_Verification_Block;
      end Test_Verification_Block;
   exception
   exception
      when Ada.Text_IO.Layout_Error =>
      when Ada.Text_IO.Layout_Error =>
         Report.Failed ("Layout Error raised when positioning text");
         Report.Failed ("Layout Error raised when positioning text");
      when others               =>
      when others               =>
         Report.Failed ("Exception in Text_IO processing");
         Report.Failed ("Exception in Text_IO processing");
   end Operational_Test_Block;
   end Operational_Test_Block;
   Final_Block:
   Final_Block:
   begin
   begin
      -- Delete the external file.
      -- Delete the external file.
      if Ada.Text_IO.Is_Open(A_Bounded_File) then
      if Ada.Text_IO.Is_Open(A_Bounded_File) then
         Ada.Text_IO.Delete (A_Bounded_File);
         Ada.Text_IO.Delete (A_Bounded_File);
      else
      else
         Ada.Text_IO.Open (A_Bounded_File,
         Ada.Text_IO.Open (A_Bounded_File,
                           Ada.Text_IO.In_File,
                           Ada.Text_IO.In_File,
                           Bounded_File_Name);
                           Bounded_File_Name);
         Ada.Text_IO.Delete (A_Bounded_File);
         Ada.Text_IO.Delete (A_Bounded_File);
      end if;
      end if;
   exception
   exception
      when others =>
      when others =>
         Report.Failed
         Report.Failed
            ( "Delete not properly implemented for Text_IO" );
            ( "Delete not properly implemented for Text_IO" );
   end Final_Block;
   end Final_Block;
   Report.Result;
   Report.Result;
exception
exception
   when Incomplete =>
   when Incomplete =>
      Report.Result;
      Report.Result;
   when others     =>
   when others     =>
      Report.Failed ( "Unexpected exception" );
      Report.Failed ( "Unexpected exception" );
      Report.Result;
      Report.Result;
end CXAA006;
end CXAA006;
 
 

powered by: WebSVN 2.1.0

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