summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/move_alloc_2.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/move_alloc_2.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/move_alloc_2.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/move_alloc_2.f90 b/gcc/testsuite/gfortran.dg/move_alloc_2.f90
index 5dabca849db..2c95d1c44f8 100644
--- a/gcc/testsuite/gfortran.dg/move_alloc_2.f90
+++ b/gcc/testsuite/gfortran.dg/move_alloc_2.f90
@@ -20,8 +20,8 @@ program bug18
allocate(foo :: afab)
afab%i = 8
call move_alloc(afab, bb%bf)
- if (.not. allocated(bb%bf)) call abort()
- if (allocated(afab)) call abort()
- if (bb%bf%i/=8) call abort()
+ if (.not. allocated(bb%bf)) STOP 1
+ if (allocated(afab)) STOP 2
+ if (bb%bf%i/=8) STOP 3
end program bug18