URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [streamio_3.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! PR25828 Stream IO test 3, tests read_x and inquire.! Contributed by Jerry DeLisle <jvdelisle@verizon.net>.program streamio_3implicit noneinteger :: i(6),jcharacter(10) :: myaccessopen(10, access="stream", form="formatted")i = (/(j,j=1,6)/)write(10,'(3(2x,i4/)/3(3x,i6/))') ii = 0rewind(10)read(10,'(3(2x,i4/)/3(3x,i6/))') iif (any(i.ne.(/(j,j=1,6)/))) call abort()inquire(unit=10, access=myaccess)if (myaccess.ne."STREAM") call abort()close(10,status="delete")end program streamio_3
