summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/move_alloc_14.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/move_alloc_14.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/move_alloc_14.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/move_alloc_14.f90 b/gcc/testsuite/gfortran.dg/move_alloc_14.f90
index bc5e4916512..71cb086b49a 100644
--- a/gcc/testsuite/gfortran.dg/move_alloc_14.f90
+++ b/gcc/testsuite/gfortran.dg/move_alloc_14.f90
@@ -17,6 +17,6 @@ call move_alloc (from=a, to=b)
call move_alloc (from=a2, to=b2)
!print *, same_type_as (a,c), same_type_as (a,b)
!print *, same_type_as (a2,c2), same_type_as (a2,b2)
-if (.not. same_type_as (a,c) .or. same_type_as (a,b)) call abort ()
-if (.not. same_type_as (a2,c2) .or. same_type_as (a2,b2)) call abort ()
+if (.not. same_type_as (a,c) .or. same_type_as (a,b)) STOP 1
+if (.not. same_type_as (a2,c2) .or. same_type_as (a2,b2)) STOP 2
end