This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[gfortran, committed] PR15164: Add testcase to testsuite


The original problem reported in PR 15164 seems to have disappeared, at least
I couldn't reproduce it with a clean tree. In order to make sure that we don't
regress, I added the testcase from the PR to the testsuite.

There's still another bug reported in the comments, so I'm not yet closing the
bug.

- Tobi

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/ChangeLog,v
retrieving revision 1.4352
diff -u -p -r1.4352 ChangeLog
--- ChangeLog   26 Sep 2004 14:58:33 -0000      1.4352
+++ ChangeLog   26 Sep 2004 15:24:17 -0000
@@ -1,3 +1,8 @@
+2004-09-26  Tobias Schlueter  <tobias.schlueter@physik.uni-muenchen.de>
+
+       PR fortran/15164
+       * gfortran.dg/pr15164.f90: New test.
+
 2004-09-26  Roger Sayle  <roger@eyesopen.com>

        PR middle-end/17112

! { dg-do compile }
! I couldn't reproduce the failure with a compiler built from the
! 2004-09-26 sources
      module specfiles
      contains
      subroutine split(i,o,lenout,n)
      integer(kind=4),intent(in) :: lenout,n
      character(len=*),intent(in) :: i
      character(len=lenout),dimension(n),intent(out) :: o
      integer(kind=4) :: j,k,l
      j=1; k=1
       outstrings(j)(k:k)=instring(i:i)
      return
      end subroutine split
      end module specfiles

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]