summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/bound_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/bound_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/bound_1.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/bound_1.f90 b/gcc/testsuite/gfortran.dg/bound_1.f90
index ce872bb0af5..e0c90556bfa 100644
--- a/gcc/testsuite/gfortran.dg/bound_1.f90
+++ b/gcc/testsuite/gfortran.dg/bound_1.f90
@@ -9,12 +9,12 @@
integer i
i = ubound(tt(1)%a, 1)
- if (i/=5) call abort()
+ if (i/=5) STOP 1
i = lbound(tt(1)%a, 1)
- if (i/=1) call abort()
+ if (i/=1) STOP 2
i = ubound(tt, 1)
- if (i/=2) call abort()
+ if (i/=2) STOP 3
i = lbound(tt, 1)
- if (i/=1) call abort()
+ if (i/=1) STOP 4
end