URL
                    https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
                
            Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [fmt_read.f90] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! pr18398, missing data on sequential formatted reads! test contributed by Thomas.Koenig@online.deopen(7,status='scratch')write (7,'(F12.5)') 1.0, 2.0, 3.0rewind(7)read(7,'(F15.5)') a,b! note the read format is wider than the writeif (abs(a-1.0) .gt. 1e-5) call abortif (abs(b-2.0) .gt. 1e-5) call abortend
