summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/module_procedure_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/module_procedure_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/module_procedure_1.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/module_procedure_1.f90 b/gcc/testsuite/gfortran.dg/module_procedure_1.f90
index 35ec18c0b61..8fadb035378 100644
--- a/gcc/testsuite/gfortran.dg/module_procedure_1.f90
+++ b/gcc/testsuite/gfortran.dg/module_procedure_1.f90
@@ -27,7 +27,7 @@ program test_interface
input1 = (/0,1/)
input2 = (/3,3/)
mysum = input1 .myadd. input2
- if (mysum(1) /= 3 .and. mysum(2) /= 4) call abort
+ if (mysum(1) /= 3 .and. mysum(2) /= 4) STOP 1
call test_sub(input1, input2)
@@ -47,6 +47,6 @@ subroutine test_sub(input1, input2)
integer mysum(2)
mysum = input1 .myadd. input2
- if (mysum(1) /= 3 .and. mysum(2) /= 4) call abort
+ if (mysum(1) /= 3 .and. mysum(2) /= 4) STOP 2
end subroutine test_sub