summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/bessel_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/bessel_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/bessel_1.f904
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/bessel_1.f90 b/gcc/testsuite/gfortran.dg/bessel_1.f90
index 728c5ce49ca..3493d7e1103 100644
--- a/gcc/testsuite/gfortran.dg/bessel_1.f90
+++ b/gcc/testsuite/gfortran.dg/bessel_1.f90
@@ -28,10 +28,10 @@ program test
contains
subroutine check_r4 (a, b)
real(kind=4), intent(in) :: a, b
- if (abs(a - b) > 1.e-5 * abs(b)) call abort
+ if (abs(a - b) > 1.e-5 * abs(b)) STOP 1
end subroutine
subroutine check_r8 (a, b)
real(kind=8), intent(in) :: a, b
- if (abs(a - b) > 1.e-7 * abs(b)) call abort
+ if (abs(a - b) > 1.e-7 * abs(b)) STOP 2
end subroutine
end program test