summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/typebound_call_2.f03
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/typebound_call_2.f03')
-rw-r--r--gcc/testsuite/gfortran.dg/typebound_call_2.f038
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/typebound_call_2.f03 b/gcc/testsuite/gfortran.dg/typebound_call_2.f03
index d0846f4149a..965a5930534 100644
--- a/gcc/testsuite/gfortran.dg/typebound_call_2.f03
+++ b/gcc/testsuite/gfortran.dg/typebound_call_2.f03
@@ -42,7 +42,7 @@ CONTAINS
CLASS(trueOrFalse), INTENT(INOUT) :: me1, me2
IF (.NOT. me1%val .OR. me2%val) THEN
- CALL abort ()
+ STOP 1
END IF
me1%val = .FALSE.
@@ -61,12 +61,12 @@ CONTAINS
adder%wrong = 0
adder%val = 42
IF (adder%func (8) /= 50) THEN
- CALL abort ()
+ STOP 2
END IF
CALL adder%sub (x, 8)
IF (x /= 50) THEN
- CALL abort ()
+ STOP 3
END IF
t%val = .TRUE.
@@ -76,7 +76,7 @@ CONTAINS
CALL f%swap (t)
IF (.NOT. t%val .OR. f%val) THEN
- CALL abort ()
+ STOP 4
END IF
END SUBROUTINE test