URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [readwrite_unf_direct_eor_1.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! PR 30056 - exceeding the record length was misrepresented as an EOF
! on read and ignored on write
program main
integer i,j
open (10, form="unformatted", access="direct", recl=4)
write (10, rec=1, err=10) 1,2
call abort()
10 continue
read (10, rec=1, err=20) i, j
call abort()
20 continue
end
Go to most recent revision | Compare with Previous | Blame | View Log