]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR libfortran/PR42422
authorThomas Koenig <tkoenig@gcc.gnu.org>
Wed, 23 Dec 2009 09:45:04 +0000 (09:45 +0000)
committerThomas Koenig <tkoenig@gcc.gnu.org>
Wed, 23 Dec 2009 09:45:04 +0000 (09:45 +0000)
2009-12-23  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR libfortran/PR42422
* gfortran.dg/list_read_10.f90:  New test.

From-SVN: r155425

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/list_read_10.f90 [new file with mode: 0644]

index 787834528210251183f48928d85b4a7efbb32642..54befe2e7fbc2121ac1d064003023966aab34db1 100644 (file)
@@ -1,3 +1,8 @@
+2009-12-23  Thomas Koenig  <tkoenig@gcc.gnu.org>
+
+       PR libfortran/PR42422
+       * gfortran.dg/list_read_10.f90:  New test.
+
 2009-11-23  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/42113
diff --git a/gcc/testsuite/gfortran.dg/list_read_10.f90 b/gcc/testsuite/gfortran.dg/list_read_10.f90
new file mode 100644 (file)
index 0000000..1ad3304
--- /dev/null
@@ -0,0 +1,14 @@
+! { dg-do run }
+! PR 42422 - read with a repeat specifyer following a separator
+program main
+  integer, dimension(10) :: i1, i2
+
+  i1 = 0
+  i2 = (/ 1, 2, 3, 5, 5, 5, 5, 0, 0, 0 /)
+  open (10,file="pr42422.dat")
+  write (10,'(A)') ' 1 2 3 4*5 /'
+  rewind 10
+  read (10,*) i1
+  if (any(i1 /= i2)) call abort
+  close (10,status="delete")
+end program main