* gfortran.dg/iostat_2.f90: New test.

From-SVN: r104110
This commit is contained in:
Francois-Xavier Coudert 2005-09-10 00:01:19 +02:00 committed by François-Xavier Coudert
parent e0fd73d434
commit 4f886942ff
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-09-09 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* gfortran.dg/iostat_2.f90: New test.
2005-09-09 Mark Mitchell <mark@codesourcery.com>
PR c++/22252

View File

@ -0,0 +1,7 @@
! PR libfortran/23784
! { dg-do run }
integer i
close(10, status="whatever", iostat=i)
if (i == 0) call abort()
write(17,*) 'foo'
end