URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [streamio_7.f90] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do run }! PR25828 Stream IO test 7, Array writes and reads.! Contributed by Jerry DeLisle <jvdelisle@verizon.net>.program streamtestimplicit nonecharacter(1) :: lf = char(10)character(1) :: tcharinteger :: i,j,kreal(kind=4), dimension(100,100) :: anarrayopen(10, file="teststream", access="stream", form="unformatted")anarray = 3.14159write(10) anarrayanarray = 0.0read(10, pos=1) anarrayanarray = abs(anarray - 3.14159)if (any(anarray.gt.0.00001)) call abort()close(10,status="delete")end program streamtest
