OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [eor_handling_5.f90] - Rev 154

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 Company

program fc002
   character(len=1) :: c
   integer :: k,k2
   character(len=*), parameter :: f="(a)"
   open(11,status="scratch", iostat=k)
   if (k /= 0) call abort
   write(11,f) "x"
   rewind (11)
   read(11, f, advance="no", iostat=k) c
   if (k /= 0) call abort
   read(11, f, advance="no", iostat=k) c
   if (k >= 0) call abort
   read(11, f, advance="no", iostat=k2) c
   if (k2 >= 0 .or. k == k2) call abort
end program fc002

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.