summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/repeat_3.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/repeat_3.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/repeat_3.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/repeat_3.f90 b/gcc/testsuite/gfortran.dg/repeat_3.f90
index d571fc6e32a..1bd23449283 100644
--- a/gcc/testsuite/gfortran.dg/repeat_3.f90
+++ b/gcc/testsuite/gfortran.dg/repeat_3.f90
@@ -18,12 +18,12 @@ program test
r = nearest(r,r)
s2 = repeat(s1,i1)
- if (s2 /= s1) call abort
+ if (s2 /= s1) STOP 1
s2 = repeat(s1,i2)
- if (s2 /= s1) call abort
+ if (s2 /= s1) STOP 2
s2 = repeat(s1,i4)
- if (s2 /= s1) call abort
+ if (s2 /= s1) STOP 3
s2 = repeat(s1,i8)
- if (s2 /= s1) call abort
+ if (s2 /= s1) STOP 4
end program test