diff options
author | Steven G. Kargl <kargl@gcc.gnu.org> | 2011-09-22 18:28:14 +0000 |
---|---|---|
committer | Steven G. Kargl <kargl@gcc.gnu.org> | 2011-09-22 18:28:14 +0000 |
commit | 22deafa84406b3a1106582929c49af55bb45d0ce (patch) | |
tree | 21a9c2c0728de6f2d6ca6d5003ff35c03ddcb32f | |
parent | 3acb1e03c47ef7fbba24da5a0f97a25f93e1f608 (diff) | |
download | gcc-22deafa84406b3a1106582929c49af55bb45d0ce.zip gcc-22deafa84406b3a1106582929c49af55bb45d0ce.tar.gz gcc-22deafa84406b3a1106582929c49af55bb45d0ce.tar.bz2 |
re PR testsuite/50487 (FAIL: gfortran.dg/bessel_6.f90)
2011-09-22 Steven G. Kargl <kargl@gcc.gnu.org>
PR testsuite/50487
* gfortran.dg/bessel_6.f90: Fix tolerance test.
From-SVN: r179097
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 90fe936..d9410dd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-09-22 Steven G. Kargl <kargl@gcc.gnu.org> + + PR testsuite/50487 + * gfortran.dg/bessel_6.f90: Fix tolerance test. + 2011-09-22 Paolo Carlini <paolo.carlini@oracle.com> PR c++/50371 diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90 index eca92cb..e0220f7 100644 --- a/gcc/testsuite/gfortran.dg/bessel_6.f90 +++ b/gcc/testsuite/gfortran.dg/bessel_6.f90 @@ -12,7 +12,7 @@ implicit none real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] real,parameter :: myeps(size(values)) = epsilon(0.0) & - * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 75, 15 ] + * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ] ! The following is sufficient for me - the values above are a bit ! more tolerant ! * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ] |