summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f90 b/gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f90
index 8c658d8838b..c02e0360e81 100644
--- a/gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f90
+++ b/gcc/testsuite/gfortran.dg/proc_ptr_comp_12.f90
@@ -26,7 +26,7 @@ program bugTest
testObj%test => returnMat
testCatch = testObj%test(2,2)
print *,testCatch
- if (sum(testCatch)/=4) call abort()
+ if (sum(testCatch)/=4) STOP 1
print *,testObj%test(3,3)
- if (sum(testObj%test(3,3))/=9) call abort()
+ if (sum(testObj%test(3,3))/=9) STOP 2
end program bugTest