summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/f2c_7.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/f2c_7.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/f2c_7.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/f2c_7.f90 b/gcc/testsuite/gfortran.dg/f2c_7.f90
index d67e10bc2c7..f36e8e5f113 100644
--- a/gcc/testsuite/gfortran.dg/f2c_7.f90
+++ b/gcc/testsuite/gfortran.dg/f2c_7.f90
@@ -28,9 +28,9 @@ interface
end interface
complex z(5)
z = c()
-if (any(z /= 0.)) call abort ()
+if (any(z /= 0.)) STOP 1
z = d()
-if (any(z /= 1.)) call abort ()
+if (any(z /= 1.)) STOP 2
end subroutine test_without_result
subroutine test_with_result
@@ -46,9 +46,9 @@ interface
end interface
complex z(5)
z = c()
-if (any(z /= 0.)) call abort ()
+if (any(z /= 0.)) STOP 3
z = d()
-if (any(z /= 1.)) call abort ()
+if (any(z /= 1.)) STOP 4
end subroutine test_with_result
call test_without_result