bounds_check_10.f90: Fix testcase.
authorTobias Burnus <burnus@gcc.gnu.org>
Sun, 14 Oct 2007 10:07:07 +0000 (12:07 +0200)
committerTobias Burnus <burnus@gcc.gnu.org>
Sun, 14 Oct 2007 10:07:07 +0000 (12:07 +0200)
2007-10-14  Tobias Burnus  <burnus@gcc.gnu.org>

        * gfortran.dg/bounds_check_10.f90: Fix testcase.

From-SVN: r129293

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/bounds_check_10.f90

index 83f025c9a80deeb10796400327fc58f0cddfc385..157d2278a30298fb59572bc29a6957714d6f3d76 100644 (file)
@@ -1,9 +1,13 @@
+2007-10-14  Tobias Burnus  <burnus@gcc.gnu.org>
+
+       * gfortran.dg/bounds_check_10.f90: Fix testcase.
+
 2007-10-13  Tobias Schlüter  <tobi@gcc.gnu.org>
            Paul Thomas  <pault@gcc.gnu.org>
 
        PR fortran/33254
        PR fortran/33727
-       * bounds_check_10.f90: New.
+       * gfortran.dg/bounds_check_10.f90: New.
 
 2007-10-13  David Edelsohn  <edelsohn@gnu.org>
 
index 02101afeacb187e49ff08cd264f5f8e12ccf7eaa..3aba1cb6ab602a5bfc0fde23aba3176ec5fe4a04 100644 (file)
@@ -8,7 +8,7 @@ character (len=2) :: x, y
 character (len=2) :: z(3)
 x = "a "
 y = "cd"
-z = [y(1:1), x(1:len(trim(x)))]  ! should work
+z = [y(1:1), y(1:1), x(1:len(trim(x)))]  ! should work
 z = [trim(x), trim(y), "aaaa"] ! [ "a", "cd", "aaaa" ] should catch first error
 end program array_char