summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/array_alloc_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/array_alloc_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/array_alloc_2.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/array_alloc_2.f90 b/gcc/testsuite/gfortran.dg/array_alloc_2.f90
index a225854f097..c321518e2a2 100644
--- a/gcc/testsuite/gfortran.dg/array_alloc_2.f90
+++ b/gcc/testsuite/gfortran.dg/array_alloc_2.f90
@@ -11,9 +11,9 @@ contains
subroutine test (expected, x)
integer, dimension (:) :: x
integer :: i, expected
- if (size (x, 1) .ne. expected) call abort
+ if (size (x, 1) .ne. expected) STOP 1
do i = 1, expected
- if (x (i) .ne. i * 100) call abort
+ if (x (i) .ne. i * 100) STOP 2
end do
end subroutine test