diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2018-02-23 22:36:54 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2018-02-23 22:36:54 +0000 |
commit | 88a3ea34080ad3087a8191fbf479543153175d59 (patch) | |
tree | 34eaec34d3588e09f9a77abba776266f124dc823 /gcc/testsuite/gfortran.dg/array_constructor_17.f90 | |
parent | 25e15aaed275cdfef34b3ee6eb3cb4b43a48d44f (diff) | |
parent | e65055a558093bd4fc0b1b0024b7814cc187b8e8 (diff) | |
download | gccgo.tar.gz |
Merge from trunk revision 257954.gccgo
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gccgo@257955 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gfortran.dg/array_constructor_17.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/array_constructor_17.f90 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/array_constructor_17.f90 b/gcc/testsuite/gfortran.dg/array_constructor_17.f90 index 3ce7a91835d..37ac34af4c5 100644 --- a/gcc/testsuite/gfortran.dg/array_constructor_17.f90 +++ b/gcc/testsuite/gfortran.dg/array_constructor_17.f90 @@ -9,7 +9,7 @@ CHARACTER(LEN = 8) :: str J = 3 write (str,'(2A4)') (/( F(I, J), I = 1, 2)/) - IF (str .NE. " ODD EVE") call abort () + IF (str .NE. " ODD EVE") STOP 1 ! Comment #1 from F-X Coudert (noted by T. Burnus) that ! actually exercises a different part of the bug. @@ -33,8 +33,8 @@ CONTAINS end function subroutine gee(a) character(*),dimension(1) :: a - if(len (a) /= 3) call abort () - if(a(1) /= '123') call abort () + if(len (a) /= 3) STOP 2 + if(a(1) /= '123') STOP 3 end subroutine gee END |