summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/submodule_18.f08
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/submodule_18.f08')
-rw-r--r--gcc/testsuite/gfortran.dg/submodule_18.f084
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/submodule_18.f08 b/gcc/testsuite/gfortran.dg/submodule_18.f08
index 14fac75635c..f8fa190b0c1 100644
--- a/gcc/testsuite/gfortran.dg/submodule_18.f08
+++ b/gcc/testsuite/gfortran.dg/submodule_18.f08
@@ -44,6 +44,6 @@ end submodule
use foo_interface
type(foo) :: a = foo (42)
type(foo) :: b = foo (99)
- if (a + b .ne. 141) call abort
- if (a * b .ne. 4158) call abort
+ if (a + b .ne. 141) STOP 1
+ if (a * b .ne. 4158) STOP 2
end