URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [eor_handling_5.f90] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }! PR 20661: Handle non-advancing I/O with iostat! Test case by Walt Brainerd, The Fortran Companyprogram fc002character(len=1) :: cinteger :: k,k2character(len=*), parameter :: f="(a)"open(11,status="scratch", iostat=k)if (k /= 0) call abortwrite(11,f) "x"rewind (11)read(11, f, advance="no", iostat=k) cif (k /= 0) call abortread(11, f, advance="no", iostat=k) cif (k >= 0) call abortread(11, f, advance="no", iostat=k2) cif (k2 >= 0 .or. k == k2) call abortend program fc002
Go to most recent revision | Compare with Previous | Blame | View Log
