summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/submodule_19.f08
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/submodule_19.f08')
-rw-r--r--gcc/testsuite/gfortran.dg/submodule_19.f084
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/submodule_19.f08 b/gcc/testsuite/gfortran.dg/submodule_19.f08
index bc840081436..11ffa70c389 100644
--- a/gcc/testsuite/gfortran.dg/submodule_19.f08
+++ b/gcc/testsuite/gfortran.dg/submodule_19.f08
@@ -54,6 +54,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