URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [read_repeat.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! PR39528 repeated entries not read when using list-directed input.! Test case derived from reporters example.program rreadimplicit noneinteger :: iarr(1:7), ia, ib, iiarr = 0open(10, status="scratch")write(10,*) " 2*1 3*2 /"write(10,*) " 12"write(10,*) " 13"rewind(10)read(10,*) (iarr(i), i=1,7)read(10,*) ia, ibif (any(iarr(1:2).ne.1)) call abortif (any(iarr(3:5).ne.2)) call abortif (any(iarr(6:7).ne.0)) call abortif (ia .ne. 12 .or. ib .ne. 13) call abortclose(10)end program rread
