diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/allocatable_function_10.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/allocatable_function_10.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/allocatable_function_10.f90 b/gcc/testsuite/gfortran.dg/allocatable_function_10.f90 index 8d171976b01..2f93bb0f841 100644 --- a/gcc/testsuite/gfortran.dg/allocatable_function_10.f90 +++ b/gcc/testsuite/gfortran.dg/allocatable_function_10.f90 @@ -39,8 +39,8 @@ program p implicit none type(t), dimension(2) :: c c=tt(ts([99,199,1999]),ts([42,142])) - if (any (c(1)%r .ne. [99,199,1999])) call abort - if (any (c(2)%r .ne. [42,142])) call abort + if (any (c(1)%r .ne. [99,199,1999])) STOP 1 + if (any (c(2)%r .ne. [42,142])) STOP 2 deallocate(c(1)%r) deallocate(c(2)%r) end program p |