aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/eof_1.f90
blob: b9d229508fea49b997c68837f89f2ae4bba3860e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
! { dg-do run }
! Program to test for proper EOF errors when reading past the end of a file.
! We used to get this wrong when a formatted read followed a list formatted
! read.
program eof_1
  character(len=5) :: s

  open (unit=11, status="SCRATCH")
  write (11, '(a)') "Hello"
  rewind(11)
  read(11, *) s
  if (s .ne. "Hello") STOP 1
  read(11, '(a5)', end=10) s
  STOP 2
10 continue
  close (11)
end