summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/matmul_bounds_12.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/matmul_bounds_12.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/matmul_bounds_12.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/matmul_bounds_12.f90 b/gcc/testsuite/gfortran.dg/matmul_bounds_12.f90
index 01b3df92c3f..b5d31c5eaa3 100644
--- a/gcc/testsuite/gfortran.dg/matmul_bounds_12.f90
+++ b/gcc/testsuite/gfortran.dg/matmul_bounds_12.f90
@@ -11,7 +11,7 @@ program main
data res2 /158., -353./
c3 = matmul(bp,a)
- if (size(c3,1) /= 2) call abort
- if (any(c3 /= res2)) call abort
+ if (size(c3,1) /= 2) STOP 1
+ if (any(c3 /= res2)) STOP 2
end program main