Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Unified Diff: gcc/gcc/testsuite/gfortran.dg/fmt_exhaust.f90

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gfortran.dg/fmt_error_2.f90 ('k') | gcc/gcc/testsuite/gfortran.dg/fmt_huge.f90 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gfortran.dg/fmt_exhaust.f90
diff --git a/gcc/gcc/testsuite/gfortran.dg/fmt_exhaust.f90 b/gcc/gcc/testsuite/gfortran.dg/fmt_exhaust.f90
index bea3f8005325a43fb0d7fbe633cfad8622e68133..bd9c8bcfb3f9a4c11d686c821dbb623da6463252 100644
--- a/gcc/gcc/testsuite/gfortran.dg/fmt_exhaust.f90
+++ b/gcc/gcc/testsuite/gfortran.dg/fmt_exhaust.f90
@@ -1,11 +1,12 @@
-! { dg-do run { target fd_truncate } }
+! { dg-do run }
! PR27304 Test running out of data descriptors with data remaining.
! Derived from case in PR. Submitted by Jerry DeLisle <jvdelisle@gcc.gnu.org>.
program test
implicit none
integer :: n
n = 1
+ open(10, status="scratch")
write(10,"(i7,(' abcd'))", err=10) n, n
call abort()
- 10 close(10, status="delete")
+ 10 close(10)
end program test
« no previous file with comments | « gcc/gcc/testsuite/gfortran.dg/fmt_error_2.f90 ('k') | gcc/gcc/testsuite/gfortran.dg/fmt_huge.f90 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698