aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/rewind_1.f90
blob: 92edf6dfed9f3750ff89c782e8d8311c547938eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
! { dg-do run }
! { dg-options "-std=legacy" }
!
! Check that rewind doesn't delete a file.
! Writing to the file truncates it at the end of the current record.  Out
! IO library was defering the actual truncation until the file was rewound.
! A second rewind would then (incorrectly) think the file had just been
! written to, and truncate the file to zero length.
program foo
  character*11 s
  open(unit=11, status="SCRATCH")
  write(11, '(a11)') "Hello World"
  rewind(11)
  rewind(11)
  s = ""
  read(11, '(a11)') s
  close(11)
  if (s .ne. "Hello World") call abort
end program