From d20ca42891b70e5202b4742f6547c0fda82fb616 Mon Sep 17 00:00:00 2001 From: Jerry DeLisle Date: Mon, 14 Apr 2008 00:47:13 +0000 Subject: [PATCH] re PR fortran/35882 (Miscounted continuation lines when interspersed with data) 2008-04-13 Jerry DeLisle PR fortran/35882 * gfortran.dg/continuation_3.f90: Update test. * gfortran.dg/continuation_5.f: Update test. * gfortran.dg/continuation_10.f90: New test. From-SVN: r134252 --- gcc/testsuite/ChangeLog | 7 +++ gcc/testsuite/gfortran.dg/continuation_10.f90 | 55 +++++++++++++++++++ gcc/testsuite/gfortran.dg/continuation_3.f90 | 2 +- gcc/testsuite/gfortran.dg/continuation_5.f | 2 +- 4 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/continuation_10.f90 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index aaa76f56ff8..3229eb0ad82 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2008-04-13 Jerry DeLisle + + PR fortran/35882 + * gfortran.dg/continuation_3.f90: Update test. + * gfortran.dg/continuation_5.f: Update test. + * gfortran.dg/continuation_10.f90: New test. + 2008-04-13 Thomas Koenig PR libfortran/32972 diff --git a/gcc/testsuite/gfortran.dg/continuation_10.f90 b/gcc/testsuite/gfortran.dg/continuation_10.f90 new file mode 100644 index 00000000000..8071dd7b695 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/continuation_10.f90 @@ -0,0 +1,55 @@ +! { dg-do compile } +! { dg-options -std=f95 } +! PR35882 Miscounted continuation lines when interspersed with data +program test_mod + implicit none + + integer, dimension(50) :: array + + array = 1 + + print "(a, i8)", & + "Line 1", & + array(2), & + "Line 3", & + array(4), & + "Line 5", & + array(6), & + "Line 7", & + array(8), & + "Line 9", & + array(10), & + "Line 11", & + array(12), & + "Line 13", & + array(14), & + "Line 15", & + array(16), & + "Line 17", & + array(18), & + "Line 19", & + array(20), & + "Line 21", & + array(22), & + "Line 23", & + array(24), & + "Line 25", & + array(26), & + "Line 27", & + array(28), & + "Line 29", & + array(30), & + "Line 31", & + array(32), & + "Line 33", & + array(34), & + "Line 35", & + array(36), & + "Line 37", & + array(38), & + "Line 39", & + array(40), & ! { dg-warning "Limit of 39 continuations exceeded" } + "Line 41", & + array(42), & + "Line 43" +end program diff --git a/gcc/testsuite/gfortran.dg/continuation_3.f90 b/gcc/testsuite/gfortran.dg/continuation_3.f90 index a7f0d1d1dd1..238f8cc7b8f 100644 --- a/gcc/testsuite/gfortran.dg/continuation_3.f90 +++ b/gcc/testsuite/gfortran.dg/continuation_3.f90 @@ -1,5 +1,5 @@ ! { dg-do compile } -! { dg-options -pedantic } +! { dg-options -std=f95 } ! PR 19262 Test limit on line continuations. Test case derived form case in PR ! by Steve Kargl. Submitted by Jerry DeLisle print *, & diff --git a/gcc/testsuite/gfortran.dg/continuation_5.f b/gcc/testsuite/gfortran.dg/continuation_5.f index b0ecd706390..15e06077ff3 100644 --- a/gcc/testsuite/gfortran.dg/continuation_5.f +++ b/gcc/testsuite/gfortran.dg/continuation_5.f @@ -1,5 +1,5 @@ ! { dg-do compile } -! { dg-options -pedantic } +! { dg-options -std=f95 } ! PR 19262 Test limit on line continuations. Test case derived form case in PR ! by Steve Kargl. Submitted by Jerry DeLisle print *, -- 2.30.2