summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dec_io_6.f90
blob: 12bcbed0581ee604e30a2a325f7ebe1d6d97d216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
! { dg-do run }
! { dg-options "-fdec" }
!
! Test that we get a run-time warning for close-on-delete with READONLY,
! and that the file is protected from deletion.
!

implicit none

integer :: fd = 8
character(*), parameter :: f = "dec_io_6.txt"
logical :: exists

open(unit=fd,file=f,action='write')
close(unit=fd)

open(unit=fd,file=f,action='read',readonly)
close(unit=fd,status='delete') ! { dg-output "file protected by READONLY" }

inquire(file=f, EXIST=exists)
if (.not. exists) then
  print *, 'file was not protected by READONLY!'
  STOP 1
endif

open(unit=fd,file=f,action='write')
close(unit=fd,status='delete') ! cleanup

end