summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/submodule_11.f08
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/submodule_11.f08')
-rw-r--r--gcc/testsuite/gfortran.dg/submodule_11.f088
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/submodule_11.f08 b/gcc/testsuite/gfortran.dg/submodule_11.f08
index 20367a9d19d..fa627405eb5 100644
--- a/gcc/testsuite/gfortran.dg/submodule_11.f08
+++ b/gcc/testsuite/gfortran.dg/submodule_11.f08
@@ -32,14 +32,14 @@ submodule (m) sm
use n
contains
module subroutine show_i
- if (i .ne. 2) call abort
- if (times_two (i) .ne. 4) call abort
+ if (i .ne. 2) STOP 1
+ if (times_two (i) .ne. 4) STOP 2
end subroutine show_i
end submodule sm
program p
use m
call show_i
- if (i .ne. -1) call abort
- if (times_two (i) .ne. 2) call abort
+ if (i .ne. -1) STOP 3
+ if (times_two (i) .ne. 2) STOP 4
end program