URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [ftell_1.f90] - Rev 816
Compare with Previous | Blame | View Log
! { dg-do run }
integer(kind=8) o, o2
open (10, status="scratch")
call ftell (10, o)
if (o /= 0) call abort
write (10,"(A)") "1234567"
call ftell (10, o)
if (o /= 8 .and. o /= 9) call abort
write (10,"(A)") "1234567"
call ftell (10, o2)
if (o2 /= 2 * o) call abort
close (10)
call ftell (10, o)
if (o /= -1) call abort
end