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/] [cxa/] [cxa4007.a] - Diff between revs 154 and 816

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

Rev 154 Rev 816
-- CXA4007.A
-- CXA4007.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 subprograms defined in package Ada.Strings.Bounded are
--      Check that the subprograms defined in package Ada.Strings.Bounded are
--      available, and that they produce correct results. Specifically, check
--      available, and that they produce correct results. Specifically, check
--      the subprograms Append, Count, Element, Find_Token, Head,
--      the subprograms Append, Count, Element, Find_Token, Head,
--      Index_Non_Blank, Replace_Element, Replicate, Tail, To_Bounded_String,
--      Index_Non_Blank, Replace_Element, Replicate, Tail, To_Bounded_String,
--      "&", ">", "<", ">=", "<=", and "*".
--      "&", ">", "<", ">=", "<=", and "*".
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      This test, when taken in conjunction with tests CXA400[6,8,9], will
--      This test, when taken in conjunction with tests CXA400[6,8,9], will
--      constitute a test of all the functionality contained in package
--      constitute a test of all the functionality contained in package
--      Ada.Strings.Bounded.  This test uses a variety of the
--      Ada.Strings.Bounded.  This test uses a variety of the
--      subprograms defined in the bounded string package in ways typical
--      subprograms defined in the bounded string package in ways typical
--      of common usage.  Different combinations of available subprograms
--      of common usage.  Different combinations of available subprograms
--      are used to accomplish similar bounded string processing goals.
--      are used to accomplish similar bounded string processing goals.
--
--
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--      22 Dec 94   SAIC    Changed obsolete constant to Ada.Strings.Space.
--      22 Dec 94   SAIC    Changed obsolete constant to Ada.Strings.Space.
--
--
--!
--!
with Ada.Strings;
with Ada.Strings;
with Ada.Strings.Bounded;
with Ada.Strings.Bounded;
with Ada.Strings.Maps;
with Ada.Strings.Maps;
with Report;
with Report;
procedure CXA4007 is
procedure CXA4007 is
begin
begin
   Report.Test ("CXA4007", "Check that the subprograms defined in package " &
   Report.Test ("CXA4007", "Check that the subprograms defined in package " &
                           "Ada.Strings.Bounded are available, and that "   &
                           "Ada.Strings.Bounded are available, and that "   &
                           "they produce correct results");
                           "they produce correct results");
   Test_Block:
   Test_Block:
   declare
   declare
      package BS80 is new Ada.Strings.Bounded.Generic_Bounded_Length(80);
      package BS80 is new Ada.Strings.Bounded.Generic_Bounded_Length(80);
      use type BS80.Bounded_String;
      use type BS80.Bounded_String;
      Part1 : constant String     := "Rum";
      Part1 : constant String     := "Rum";
      Part2 : Character           := 'p';
      Part2 : Character           := 'p';
      Part3 : BS80.Bounded_String := BS80.To_Bounded_String("el");
      Part3 : BS80.Bounded_String := BS80.To_Bounded_String("el");
      Part4 : Character           := 's';
      Part4 : Character           := 's';
      Part5 : BS80.Bounded_String := BS80.To_Bounded_String("tilt");
      Part5 : BS80.Bounded_String := BS80.To_Bounded_String("tilt");
      Part6 : String(1..3)        := "ski";
      Part6 : String(1..3)        := "ski";
      Full_Catenate_String,
      Full_Catenate_String,
      Full_Append_String,
      Full_Append_String,
      Constructed_String,
      Constructed_String,
      Drop_String,
      Drop_String,
      Replicated_String,
      Replicated_String,
      Token_String         : BS80.Bounded_String;
      Token_String         : BS80.Bounded_String;
      CharA : Character := 'A';
      CharA : Character := 'A';
      CharB : Character := 'B';
      CharB : Character := 'B';
      CharC : Character := 'C';
      CharC : Character := 'C';
      CharD : Character := 'D';
      CharD : Character := 'D';
      CharE : Character := 'E';
      CharE : Character := 'E';
      CharF : Character := 'F';
      CharF : Character := 'F';
      ABStr : String(1..15) := "AAAAABBBBBBBBBB";
      ABStr : String(1..15) := "AAAAABBBBBBBBBB";
      StrB  : String(1..2)  := "BB";
      StrB  : String(1..2)  := "BB";
      StrE  : String(1..2)  := "EE";
      StrE  : String(1..2)  := "EE";
   begin
   begin
      -- Evaluation of the overloaded forms of the "&" operator defined
      -- Evaluation of the overloaded forms of the "&" operator defined
      -- for instantiations of Bounded Strings.
      -- for instantiations of Bounded Strings.
      Full_Catenate_String :=
      Full_Catenate_String :=
        BS80."&"(Part2,                            -- Char & Bnd Str
        BS80."&"(Part2,                            -- Char & Bnd Str
                 BS80."&"(Part3,                   -- Bnd Str & Bnd Str
                 BS80."&"(Part3,                   -- Bnd Str & Bnd Str
                          BS80."&"(Part4,          -- Char & Bnd Str
                          BS80."&"(Part4,          -- Char & Bnd Str
                                   BS80."&"(Part5, -- Bnd Str & Bnd Str
                                   BS80."&"(Part5, -- Bnd Str & Bnd Str
                                           BS80.To_Bounded_String(Part6)))));
                                           BS80.To_Bounded_String(Part6)))));
      Full_Catenate_String :=
      Full_Catenate_String :=
        Part1 &  Full_Catenate_String;             -- Str & Bnd Str
        Part1 &  Full_Catenate_String;             -- Str & Bnd Str
      Full_Catenate_String :=
      Full_Catenate_String :=
        Full_Catenate_String & 'n';                -- Bnd Str & Char
        Full_Catenate_String & 'n';                -- Bnd Str & Char
      -- Evaluation of the overloaded forms of function Append.
      -- Evaluation of the overloaded forms of function Append.
      Full_Append_String :=
      Full_Append_String :=
        BS80.Append(Part2,                                      -- Char,Bnd
        BS80.Append(Part2,                                      -- Char,Bnd
               BS80.Append(Part3,                               -- Bnd, Bnd
               BS80.Append(Part3,                               -- Bnd, Bnd
                      BS80.Append(Part4,                        -- Char,Bnd
                      BS80.Append(Part4,                        -- Char,Bnd
                             BS80.Append(BS80.To_String(Part5), -- Str,Bnd
                             BS80.Append(BS80.To_String(Part5), -- Str,Bnd
                                         BS80.To_Bounded_String(Part6)))));
                                         BS80.To_Bounded_String(Part6)))));
      Full_Append_String :=
      Full_Append_String :=
        BS80.Append(BS80.To_Bounded_String(Part1),            -- Bnd , Str
        BS80.Append(BS80.To_Bounded_String(Part1),            -- Bnd , Str
                    BS80.To_String(Full_Append_String));
                    BS80.To_String(Full_Append_String));
      Full_Append_String :=
      Full_Append_String :=
        BS80.Append(Left  => Full_Append_String,
        BS80.Append(Left  => Full_Append_String,
                    Right => 'n');                            -- Bnd, Char
                    Right => 'n');                            -- Bnd, Char
      -- Validate the resulting bounded strings.
      -- Validate the resulting bounded strings.
      if Full_Catenate_String < Full_Append_String or
      if Full_Catenate_String < Full_Append_String or
         Full_Catenate_String > Full_Append_String or
         Full_Catenate_String > Full_Append_String or
         not (Full_Catenate_String  = Full_Append_String and
         not (Full_Catenate_String  = Full_Append_String and
              Full_Catenate_String <= Full_Append_String and
              Full_Catenate_String <= Full_Append_String and
              Full_Catenate_String >= Full_Append_String)
              Full_Catenate_String >= Full_Append_String)
      then
      then
         Report.Failed("Incorrect results from bounded string catenation" &
         Report.Failed("Incorrect results from bounded string catenation" &
                       " and comparison");
                       " and comparison");
      end if;
      end if;
      -- Evaluate the overloaded forms of the Constructor function "*" and
      -- Evaluate the overloaded forms of the Constructor function "*" and
      -- the Replicate function.
      -- the Replicate function.
      Constructed_String :=
      Constructed_String :=
        (2 * CharA) &                           -- "AA"
        (2 * CharA) &                           -- "AA"
        (2 * StrB)  &                           -- "AABBBB"
        (2 * StrB)  &                           -- "AABBBB"
        (3 * BS80."*"(2, CharC)) &              -- "AABBBBCCCCCC"
        (3 * BS80."*"(2, CharC)) &              -- "AABBBBCCCCCC"
        BS80.Replicate(3,
        BS80.Replicate(3,
                   BS80.Replicate(2, CharD)) &  -- "AABBBBCCCCCCDDDDDD"
                   BS80.Replicate(2, CharD)) &  -- "AABBBBCCCCCCDDDDDD"
        BS80.Replicate(2, StrE) &               -- "AABBBBCCCCCCDDDDDDEEEE"
        BS80.Replicate(2, StrE) &               -- "AABBBBCCCCCCDDDDDDEEEE"
        BS80.Replicate(2, CharF);               -- "AABBBBCCCCCCDDDDDDEEEEFF"
        BS80.Replicate(2, CharF);               -- "AABBBBCCCCCCDDDDDDEEEEFF"
      -- Use of Function Replicate that involves dropping characters.  The
      -- Use of Function Replicate that involves dropping characters.  The
      -- attempt to replicate the 15 character string six times will exceed
      -- attempt to replicate the 15 character string six times will exceed
      -- the 80 character bound of the string.  Therefore, the result should
      -- the 80 character bound of the string.  Therefore, the result should
      -- be the catenation of 5 copies of the 15 character string, followed
      -- be the catenation of 5 copies of the 15 character string, followed
      -- by 5 'A' characters (the first five characters of the 6th
      -- by 5 'A' characters (the first five characters of the 6th
      -- replication) with the remaining characters of the 6th replication
      -- replication) with the remaining characters of the 6th replication
      -- dropped.
      -- dropped.
      Drop_String :=
      Drop_String :=
         BS80.Replicate(Count => 6,
         BS80.Replicate(Count => 6,
                        Item  => ABStr,              -- "AAAAABBBBBBBBBB"
                        Item  => ABStr,              -- "AAAAABBBBBBBBBB"
                        Drop  => Ada.Strings.Right);
                        Drop  => Ada.Strings.Right);
      if BS80.Element(Drop_String, 1)  /= 'A' or
      if BS80.Element(Drop_String, 1)  /= 'A' or
         BS80.Element(Drop_String, 6)  /= 'B' or
         BS80.Element(Drop_String, 6)  /= 'B' or
         BS80.Element(Drop_String, 76) /= 'A' or
         BS80.Element(Drop_String, 76) /= 'A' or
         BS80.Element(Drop_String, 80) /= 'A'
         BS80.Element(Drop_String, 80) /= 'A'
      then
      then
         Report.Failed("Incorrect result from Replicate with Drop");
         Report.Failed("Incorrect result from Replicate with Drop");
      end if;
      end if;
      -- Use function Index_Non_Blank in the evaluation of the
      -- Use function Index_Non_Blank in the evaluation of the
      -- Constructed_String.
      -- Constructed_String.
      if BS80.Index_Non_Blank(Constructed_String, Ada.Strings.Forward)  /=
      if BS80.Index_Non_Blank(Constructed_String, Ada.Strings.Forward)  /=
         BS80.To_String(Constructed_String)'First                         or
         BS80.To_String(Constructed_String)'First                         or
         BS80.Index_Non_Blank(Constructed_String, Ada.Strings.Backward) /=
         BS80.Index_Non_Blank(Constructed_String, Ada.Strings.Backward) /=
         BS80.Length(Constructed_String)
         BS80.Length(Constructed_String)
      then
      then
         Report.Failed("Incorrect results from constructor functions");
         Report.Failed("Incorrect results from constructor functions");
      end if;
      end if;
      declare
      declare
         -- Define character set objects for use with the Count function.
         -- Define character set objects for use with the Count function.
         -- Constructed_String = "AABBBBCCCCCCDDDDDDEEEEFF" from above.
         -- Constructed_String = "AABBBBCCCCCCDDDDDDEEEEFF" from above.
         A_Set : Ada.Strings.Maps.Character_Set :=
         A_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,1));
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,1));
         B_Set : Ada.Strings.Maps.Character_Set :=
         B_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,3));
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,3));
         C_Set : Ada.Strings.Maps.Character_Set :=
         C_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,7));
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,7));
         D_Set : Ada.Strings.Maps.Character_Set :=
         D_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,13));
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,13));
         E_Set : Ada.Strings.Maps.Character_Set :=
         E_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,19));
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,19));
         F_Set : Ada.Strings.Maps.Character_Set :=
         F_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,23));
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,23));
         Start : Positive;
         Start : Positive;
         Stop  : Natural  := 0;
         Stop  : Natural  := 0;
      begin
      begin
         -- Evaluate the results from function Count by comparing the number
         -- Evaluate the results from function Count by comparing the number
         -- of A's to the number of F's, B's to E's, and C's to D's in the
         -- of A's to the number of F's, B's to E's, and C's to D's in the
         -- Constructed_String.
         -- Constructed_String.
         -- There should be an equal number of each of the characters that
         -- There should be an equal number of each of the characters that
         -- are being compared (i.e., 2 A's and F's, 4 B's and E's, etc)
         -- are being compared (i.e., 2 A's and F's, 4 B's and E's, etc)
         if BS80.Count(Constructed_String, A_Set)      /=
         if BS80.Count(Constructed_String, A_Set)      /=
            BS80.Count(Constructed_String, F_Set)        or
            BS80.Count(Constructed_String, F_Set)        or
            BS80.Count(Constructed_String, B_Set)      /=
            BS80.Count(Constructed_String, B_Set)      /=
            BS80.Count(Constructed_String, E_Set)        or
            BS80.Count(Constructed_String, E_Set)        or
            not (BS80.Count(Constructed_String, C_Set)  =
            not (BS80.Count(Constructed_String, C_Set)  =
                 BS80.Count(Constructed_String, D_Set))
                 BS80.Count(Constructed_String, D_Set))
         then
         then
            Report.Failed("Incorrect result from function Count");
            Report.Failed("Incorrect result from function Count");
         end if;
         end if;
         -- Evaluate the functions Head, Tail, and Find_Token.
         -- Evaluate the functions Head, Tail, and Find_Token.
         -- Create the Token_String from the Constructed_String above.
         -- Create the Token_String from the Constructed_String above.
         Token_String :=
         Token_String :=
           BS80.Tail(BS80.Head(Constructed_String,  3), 2) &     -- "AB" &
           BS80.Tail(BS80.Head(Constructed_String,  3), 2) &     -- "AB" &
           BS80.Head(BS80.Tail(Constructed_String, 13), 2) &     -- "CD" &
           BS80.Head(BS80.Tail(Constructed_String, 13), 2) &     -- "CD" &
           BS80.Head(BS80.Tail(Constructed_String,  3), 2);      -- "EF"
           BS80.Head(BS80.Tail(Constructed_String,  3), 2);      -- "EF"
         if Token_String /= BS80.To_Bounded_String("ABCDEF") then
         if Token_String /= BS80.To_Bounded_String("ABCDEF") then
            Report.Failed("Incorrect result from Catenation of Token_String");
            Report.Failed("Incorrect result from Catenation of Token_String");
         end if;
         end if;
         -- Find the starting/ending position of the first A in the
         -- Find the starting/ending position of the first A in the
         -- Token_String (both should be 1, only one A appears in string).
         -- Token_String (both should be 1, only one A appears in string).
         -- The Function Head uses the default pad character to return a
         -- The Function Head uses the default pad character to return a
         -- bounded string longer than its input parameter bounded string.
         -- bounded string longer than its input parameter bounded string.
         BS80.Find_Token(BS80.Head(Token_String, 10),  -- Default pad.
         BS80.Find_Token(BS80.Head(Token_String, 10),  -- Default pad.
                         A_Set,
                         A_Set,
                         Ada.Strings.Inside,
                         Ada.Strings.Inside,
                         Start,
                         Start,
                         Stop);
                         Stop);
         if Start /= 1 and Stop /= 1 then
         if Start /= 1 and Stop /= 1 then
            Report.Failed("Incorrect result from Find_Token - 1");
            Report.Failed("Incorrect result from Find_Token - 1");
         end if;
         end if;
         -- Find the starting/ending position of the first non-AB slice in
         -- Find the starting/ending position of the first non-AB slice in
         -- the "head" five characters of Token_String (slice CDE at
         -- the "head" five characters of Token_String (slice CDE at
         -- positions 3-5)
         -- positions 3-5)
         BS80.Find_Token(BS80.Head(Token_String, 5),            -- "ABCDE"
         BS80.Find_Token(BS80.Head(Token_String, 5),            -- "ABCDE"
                         Ada.Strings.Maps."OR"(A_Set, B_Set),   -- Set (AB)
                         Ada.Strings.Maps."OR"(A_Set, B_Set),   -- Set (AB)
                         Ada.Strings.Outside,
                         Ada.Strings.Outside,
                         Start,
                         Start,
                         Stop);
                         Stop);
         if Start /= 3 and Stop /= 5 then
         if Start /= 3 and Stop /= 5 then
            Report.Failed("Incorrect result from Find_Token - 2");
            Report.Failed("Incorrect result from Find_Token - 2");
         end if;
         end if;
         -- Find the starting/ending position of the first CD slice in
         -- Find the starting/ending position of the first CD slice in
         -- the "tail" eight characters (including two pad characters)
         -- the "tail" eight characters (including two pad characters)
         -- of Token_String (slice CD at positions 5-6 of the tail
         -- of Token_String (slice CD at positions 5-6 of the tail
         -- portion specified)
         -- portion specified)
         BS80.Find_Token(BS80.Tail(Token_String, 8,
         BS80.Find_Token(BS80.Tail(Token_String, 8,
                                   Ada.Strings.Space),         -- "  ABCDEF"
                                   Ada.Strings.Space),         -- "  ABCDEF"
                         Ada.Strings.Maps."OR"(C_Set, D_Set),  -- Set (CD)
                         Ada.Strings.Maps."OR"(C_Set, D_Set),  -- Set (CD)
                         Ada.Strings.Inside,
                         Ada.Strings.Inside,
                         Start,
                         Start,
                         Stop);
                         Stop);
         if Start /= 5 and Stop /= 6 then
         if Start /= 5 and Stop /= 6 then
            Report.Failed("Incorrect result from Find_Token - 3");
            Report.Failed("Incorrect result from Find_Token - 3");
         end if;
         end if;
         -- Evaluate the Replace_Element procedure.
         -- Evaluate the Replace_Element procedure.
         -- Token_String = "ABCDEF"
         -- Token_String = "ABCDEF"
         BS80.Replace_Element(Token_String, 3, BS80.Element(Token_String,4));
         BS80.Replace_Element(Token_String, 3, BS80.Element(Token_String,4));
         -- Token_String = "ABDDEF"
         -- Token_String = "ABDDEF"
         BS80.Replace_Element(Source => Token_String,
         BS80.Replace_Element(Source => Token_String,
                              Index  => 2,
                              Index  => 2,
                              By     => BS80.Element(Token_String, 5));
                              By     => BS80.Element(Token_String, 5));
         -- Token_String = "AEDDEF"
         -- Token_String = "AEDDEF"
         BS80.Replace_Element(Token_String,
         BS80.Replace_Element(Token_String,
                              1,
                              1,
                              BS80.Element(BS80.Tail(Token_String, 2), 2));
                              BS80.Element(BS80.Tail(Token_String, 2), 2));
         -- Token_String = "FEDDEF"
         -- Token_String = "FEDDEF"
         -- Evaluate this result.
         -- Evaluate this result.
         if BS80.Element(Token_String, BS80.To_String(Token_String)'First) /=
         if BS80.Element(Token_String, BS80.To_String(Token_String)'First) /=
            BS80.Element(Token_String, BS80.To_String(Token_String)'Last)  or
            BS80.Element(Token_String, BS80.To_String(Token_String)'Last)  or
            BS80.Count(Token_String, D_Set)                                /=
            BS80.Count(Token_String, D_Set)                                /=
            BS80.Count(Token_String, E_Set)                                or
            BS80.Count(Token_String, E_Set)                                or
            BS80.Index_Non_Blank(BS80.Head(Token_String,6))                /=
            BS80.Index_Non_Blank(BS80.Head(Token_String,6))                /=
            BS80.Index_Non_Blank(BS80.Tail(Token_String,6))                or
            BS80.Index_Non_Blank(BS80.Tail(Token_String,6))                or
            BS80.Head(Token_String, 1)                                     /=
            BS80.Head(Token_String, 1)                                     /=
            BS80.Tail(Token_String, 1)
            BS80.Tail(Token_String, 1)
         then
         then
            Report.Failed("Incorrect result from operations in combination");
            Report.Failed("Incorrect result from operations in combination");
         end if;
         end if;
      end;
      end;
   exception
   exception
      when others => Report.Failed ("Exception raised in Test_Block");
      when others => Report.Failed ("Exception raised in Test_Block");
   end Test_Block;
   end Test_Block;
   Report.Result;
   Report.Result;
end CXA4007;
end CXA4007;
 
 

powered by: WebSVN 2.1.0

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