aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/ftell_1.f90
blob: 4f617acb0f48142a01ff2d7791b488f03dfd1759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { 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