summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/char_eoshift_4.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/char_eoshift_4.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/char_eoshift_4.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/char_eoshift_4.f90 b/gcc/testsuite/gfortran.dg/char_eoshift_4.f90
index b7c86709034..4b25286af2e 100644
--- a/gcc/testsuite/gfortran.dg/char_eoshift_4.f90
+++ b/gcc/testsuite/gfortran.dg/char_eoshift_4.f90
@@ -48,11 +48,11 @@ contains
do i1 = 1, n1
i2p = i2 + shift1 (i1, i3)
if (i2p .le. n2) then
- if (b (i1, i2, i3) .ne. a (i1, i2p, i3)) call abort
+ if (b (i1, i2, i3) .ne. a (i1, i2p, i3)) STOP 1
else if (has_filler) then
- if (b (i1, i2, i3) .ne. filler (i1, i3)) call abort
+ if (b (i1, i2, i3) .ne. filler (i1, i3)) STOP 2
else
- if (b (i1, i2, i3) .ne. '') call abort
+ if (b (i1, i2, i3) .ne. '') STOP 3
end if
end do
end do