diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/array_alloc_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/array_alloc_1.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/array_alloc_1.f90 b/gcc/testsuite/gfortran.dg/array_alloc_1.f90 index 17be757a918..6b770779c6f 100644 --- a/gcc/testsuite/gfortran.dg/array_alloc_1.f90 +++ b/gcc/testsuite/gfortran.dg/array_alloc_1.f90 @@ -9,7 +9,7 @@ contains integer, dimension (10) :: x integer :: i do i = 1, 10 - if (x (i) .ne. i * 100) call abort + if (x (i) .ne. i * 100) STOP 1 end do end subroutine test |