aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/open_status_2.f90
blob: c7e14c0ebbea39b58ba1501cc1f7b3c9ae939774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! { dg-do run } 
! PR 24945
! Test reopening file without status specifier or with
! status='unknown'. The standard says that these two must behave
! identically, but the actual behavior is processor dependent.
program open_status_2
  open(10, file="f", form='unformatted', status='unknown')
  open(10, file="f", form='unformatted', status='unknown')
  open(10, file="f", form='unformatted')
  close(10, status='delete')
end program open_status_2