From cc41270a0d3d6b0870f866ee87402cd96e451bbe Mon Sep 17 00:00:00 2001 From: dominiq Date: Tue, 22 Jan 2019 13:12:36 +0000 Subject: [PATCH] 2019-01-22 Manfred Schwarb * gfortran.dg/array_function_5.f90: Fix a dg directive. * gfortran.dg/block_16.f08: Likewise. * gfortran.dg/dec_structure_14.f90: Likewise. * gfortran.dg/namelist_96.f90: Likewise. * gfortran.dg/newunit_5.f90.f90: Moved to * gfortran.dg/newunit_5.f90: here. * gfortran.dg/pdt_28.f03: Likewise. * gfortran.dg/spread_simplify_1.f90: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@268148 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/testsuite/ChangeLog | 11 +++++++++++ gcc/testsuite/gfortran.dg/array_function_5.f90 | 2 +- gcc/testsuite/gfortran.dg/block_16.f08 | 2 +- gcc/testsuite/gfortran.dg/dec_structure_14.f90 | 2 +- gcc/testsuite/gfortran.dg/namelist_96.f90 | 2 +- .../gfortran.dg/{newunit_5.f90.f90 => newunit_5.f90} | 2 +- gcc/testsuite/gfortran.dg/pdt_28.f03 | 2 +- gcc/testsuite/gfortran.dg/spread_simplify_1.f90 | 2 +- 8 files changed, 18 insertions(+), 7 deletions(-) rename gcc/testsuite/gfortran.dg/{newunit_5.f90.f90 => newunit_5.f90} (96%) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bbf04da7a58a..1b61a3d88037 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,14 @@ +2019-01-22 Manfred Schwarb + + * gfortran.dg/array_function_5.f90: Fix a dg directive. + * gfortran.dg/block_16.f08: Likewise. + * gfortran.dg/dec_structure_14.f90: Likewise. + * gfortran.dg/namelist_96.f90: Likewise. + * gfortran.dg/newunit_5.f90.f90: Moved to + * gfortran.dg/newunit_5.f90: here. + * gfortran.dg/pdt_28.f03: Likewise. + * gfortran.dg/spread_simplify_1.f90: Likewise. + 2019-01-22 Tamar Christina PR/tree-optimization 88903 diff --git a/gcc/testsuite/gfortran.dg/array_function_5.f90 b/gcc/testsuite/gfortran.dg/array_function_5.f90 index c5e5aa0de3ae..7ac97f03b20b 100644 --- a/gcc/testsuite/gfortran.dg/array_function_5.f90 +++ b/gcc/testsuite/gfortran.dg/array_function_5.f90 @@ -1,4 +1,4 @@ -! { dg-do run } +! { dg-do run } ! PR41278 internal compiler error related to matmul and transpose ! Test case prepared by Jerry DeLisle ! Original test case by Chris diff --git a/gcc/testsuite/gfortran.dg/block_16.f08 b/gcc/testsuite/gfortran.dg/block_16.f08 index 165c719cbbea..e3b904fa8749 100644 --- a/gcc/testsuite/gfortran.dg/block_16.f08 +++ b/gcc/testsuite/gfortran.dg/block_16.f08 @@ -1,4 +1,4 @@ -! { dg-do compile ) +! { dg-do compile } ! PR82009 [F08] ICE with block construct MODULE sparse_matrix_csx_benchmark_utils IMPLICIT NONE diff --git a/gcc/testsuite/gfortran.dg/dec_structure_14.f90 b/gcc/testsuite/gfortran.dg/dec_structure_14.f90 index 4e271b7390f3..0079e6c1c29b 100644 --- a/gcc/testsuite/gfortran.dg/dec_structure_14.f90 +++ b/gcc/testsuite/gfortran.dg/dec_structure_14.f90 @@ -1,4 +1,4 @@ - ! { dg-do "compile" } + ! { dg-do compile } ! { dg-options "-fdec-structure" } ! ! Test that structures inside a common block do not require the diff --git a/gcc/testsuite/gfortran.dg/namelist_96.f90 b/gcc/testsuite/gfortran.dg/namelist_96.f90 index 5606e1f77540..9a956ee922d5 100644 --- a/gcc/testsuite/gfortran.dg/namelist_96.f90 +++ b/gcc/testsuite/gfortran.dg/namelist_96.f90 @@ -1,4 +1,4 @@ -! ( dg-do run } +! { dg-do run } program pr88776 implicit none character(*), parameter :: file = "pr88776.dat" diff --git a/gcc/testsuite/gfortran.dg/newunit_5.f90.f90 b/gcc/testsuite/gfortran.dg/newunit_5.f90 similarity index 96% rename from gcc/testsuite/gfortran.dg/newunit_5.f90.f90 rename to gcc/testsuite/gfortran.dg/newunit_5.f90 index de3eb0009051..8821b9f0505e 100644 --- a/gcc/testsuite/gfortran.dg/newunit_5.f90.f90 +++ b/gcc/testsuite/gfortran.dg/newunit_5.f90 @@ -1,4 +1,4 @@ -! { dg-do run ) +! { dg-do run } ! PR83525 Combination of newunit and internal unit was failing. program main integer :: funit diff --git a/gcc/testsuite/gfortran.dg/pdt_28.f03 b/gcc/testsuite/gfortran.dg/pdt_28.f03 index c0dc1a0d1be7..de687913c763 100644 --- a/gcc/testsuite/gfortran.dg/pdt_28.f03 +++ b/gcc/testsuite/gfortran.dg/pdt_28.f03 @@ -1,5 +1,5 @@ ! { dg-do run } -! ( dg-options "-fbounds-check" } +! { dg-options "-fbounds-check" } ! ! Test the fix for PR83731, where the following failed on the check for the ! value of the parameter 'k'. diff --git a/gcc/testsuite/gfortran.dg/spread_simplify_1.f90 b/gcc/testsuite/gfortran.dg/spread_simplify_1.f90 index afc254ac39ae..ba28639e0ff4 100644 --- a/gcc/testsuite/gfortran.dg/spread_simplify_1.f90 +++ b/gcc/testsuite/gfortran.dg/spread_simplify_1.f90 @@ -1,4 +1,4 @@ -! { dg-do run } +! { dg-do run } ! PR 68426 - simplification used to fail. module m implicit none -- 2.47.2