2009-07-19 Janne Blomqvist <jb@gcc.gnu.org>
Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/40714
* gfortran.dg/eof_3.f90: New test.
Co-Authored-By: Jerry DeLisle <jvdelisle@gcc.gnu.org>
From-SVN: r149797
+2009-07-19 Janne Blomqvist <jb@gcc.gnu.org>
+ Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ PR libfortran/40714
+ * gfortran.dg/eof_3.f90: New test.
+
2009-07-18 Steven G. Kargl <kargl@gcc.gnu.org>
PR fortran/40727
--- /dev/null
+! { dg-do run }
+! PR40714 A read hitting EOF should leave the unit structure in a correct state
+program test
+open(unit=32,status="scratch",access="sequential",form="unformatted")
+read(32,end=100)
+100 continue
+write (32)
+end program test