aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/inquire_9.f90
blob: 99cd1af19cf93efc81662320e17577afc299cbca (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
! PR fortran/24774
! { dg-do run }
  logical :: l
  l = .true.
  inquire (file='inquire_9 file that should not exist', exist=l)
  if (l) call abort
  l = .true.
  inquire (unit=-16, exist=l)
  if (l) call abort
  open (unit=16, file='inquire_9.tst')
  write (unit=16, fmt='(a)') 'Test'
  l = .false.
  inquire (unit=16, exist=l)
  if (.not.l) call abort
  l = .false.
  inquire (file='inquire_9.tst', exist=l)
  if (.not.l) call abort
  close (unit=16)
  l = .false.
  inquire (file='inquire_9.tst', exist=l)
  if (.not.l) call abort
  open (unit=16, file='inquire_9.tst')
  close (unit=16, status='delete')
end