From f7d7d3b779b8ade7cef279492981705ee9b5a577 Mon Sep 17 00:00:00 2001 From: "Steven G. Kargl" Date: Sun, 10 Apr 2005 03:46:22 +0000 Subject: [PATCH] * gfortran.dg/PR19872.f: New test. From-SVN: r97938 --- gcc/testsuite/ChangeLog | 9 +++++++-- gcc/testsuite/gfortran.dg/PR19872.f | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/PR19872.f diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6e92a2d..c8508e8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,8 +1,13 @@ -2005--4-09 Steven G. Kargl +2005-04-09 Bud Davis + Steven G. Kargl + + * gfortran.dg/PR19872.f: New test. + +2005-04-09 Steven G. Kargl * gfortran.dg/nint_1.f90: Fix dg-do directive -2005--4-09 Steven G. Kargl +2005-04-09 Steven G. Kargl * gfortran.dg/nint_1.f90: New test. diff --git a/gcc/testsuite/gfortran.dg/PR19872.f b/gcc/testsuite/gfortran.dg/PR19872.f new file mode 100644 index 0000000..dda9a8b --- /dev/null +++ b/gcc/testsuite/gfortran.dg/PR19872.f @@ -0,0 +1,20 @@ +! { dg-do run } +! PR 19872 - closed and re-opened file not overwriten + implicit none + integer i(4) + data i / 4 * 0 / + open(1,form='FORMATTED',status='UNKNOWN') + write(1,'("1 2 3 4 5 6 7 8 9")') + close(1) + open(1,form='FORMATTED') + write(1,'("9 8 7 6")') + close(1) + open(1,form='FORMATTED') + read(1,*)i + if(i(1).ne.9.and.i(2).ne.8.and.i(3).ne.7.and.i(4).ne.9)call abort + read(1,*,end=200)i +! should only be able to read one line from the file + call abort + 200 continue + close(1,STATUS='DELETE') + end -- 2.7.4