summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/move_alloc_5.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/move_alloc_5.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/move_alloc_5.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/move_alloc_5.f90 b/gcc/testsuite/gfortran.dg/move_alloc_5.f90
index b2759de2c1d..444b2e583d2 100644
--- a/gcc/testsuite/gfortran.dg/move_alloc_5.f90
+++ b/gcc/testsuite/gfortran.dg/move_alloc_5.f90
@@ -18,7 +18,7 @@ program testmv1
allocate (sm2)
call move_alloc (sm2,sm)
- if (allocated(sm2)) call abort()
- if (.not. allocated(sm)) call abort()
+ if (allocated(sm2)) STOP 1
+ if (.not. allocated(sm)) STOP 2
end program