summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/reduction.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/reduction.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/reduction.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/reduction.f90 b/gcc/testsuite/gfortran.dg/reduction.f90
index 82193542ff8..ac853159d58 100644
--- a/gcc/testsuite/gfortran.dg/reduction.f90
+++ b/gcc/testsuite/gfortran.dg/reduction.f90
@@ -55,7 +55,7 @@ program reduction_mask
val(35) = sum((/ 1, 2, 3 /), dim=1, mask=equal)
val(36) = sum((/ 1, 2, 3 /), mask=equal, dim=1)
- if (any (val /= res)) call abort
+ if (any (val /= res)) STOP 1
! Tests for complex arguments. These were broken by the original fix.
@@ -81,5 +81,5 @@ program reduction_mask
cval(17) = sum(cin, dim=1, mask=equal)
cval(18) = sum(cin, mask=equal, dim=1)
- if (any (cval /= cmplx(res(19:36)))) call abort
+ if (any (cval /= cmplx(res(19:36)))) STOP 2
end program reduction_mask