view gcc/testsuite/gfortran.dg/dec_io_6.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { 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!'
  call abort()
endif

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

end