summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/typebound_generic_6.f03
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/typebound_generic_6.f03')
-rw-r--r--gcc/testsuite/gfortran.dg/typebound_generic_6.f038
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/typebound_generic_6.f03 b/gcc/testsuite/gfortran.dg/typebound_generic_6.f03
index d0a17567ab4..8805c39d44f 100644
--- a/gcc/testsuite/gfortran.dg/typebound_generic_6.f03
+++ b/gcc/testsuite/gfortran.dg/typebound_generic_6.f03
@@ -58,10 +58,10 @@ program testd15
allocate(foo2 :: afab)
call af2%do()
- if (af2%i .ne. 2) call abort
- if (af2%get() .ne. 3) call abort
+ if (af2%i .ne. 2) STOP 1
+ if (af2%get() .ne. 3) STOP 2
call afab%do()
- if (afab%i .ne. 2) call abort
- if (afab%get() .ne. 3) call abort
+ if (afab%i .ne. 2) STOP 3
+ if (afab%get() .ne. 3) STOP 4
end program testd15