From: Tom de Vries Date: Wed, 18 Feb 2015 20:07:48 +0000 (+0000) Subject: Add missing cleanup in gfortran.dg/read_eof_8.f90 X-Git-Tag: releases/gcc-5.1.0~892 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fbd78d3dd8c4e84ac99ab0433a2a1031e15104e1;p=thirdparty%2Fgcc.git Add missing cleanup in gfortran.dg/read_eof_8.f90 2015-02-18 Tom de Vries PR testsuite/65107 * gfortran.dg/read_eof_8.f90: Add missing close. From-SVN: r220794 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5bbdfbbd9c03..5bacb24025fe 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-02-18 Tom de Vries + + PR testsuite/65107 + * gfortran.dg/read_eof_8.f90: Add missing close. + 2015-02-18 Richard Biener PR tree-optimization/65063 diff --git a/gcc/testsuite/gfortran.dg/read_eof_8.f90 b/gcc/testsuite/gfortran.dg/read_eof_8.f90 index 7436a2b1b6d9..86228da567cb 100644 --- a/gcc/testsuite/gfortran.dg/read_eof_8.f90 +++ b/gcc/testsuite/gfortran.dg/read_eof_8.f90 @@ -20,6 +20,7 @@ program test enddo call abort 100 if (k /= 5) call abort + close(25, status="delete") stop 101 call abort end program test