1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Ole Streicher <debian@liska.ath.cx>
Date: Sun, 15 Jan 2017 16:35:33 +0100
Subject: Increase the tolerance in the TSPX test.
TSPX tests the spectral transformation routines for closure. On some
systems (armel, armhf), this test shows a slightly increased residual,
which is however still acceptable.
---
Fortran/test/tspx.f | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Fortran/test/tspx.f b/Fortran/test/tspx.f
index 30b68a2..05a971d 100644
--- a/Fortran/test/tspx.f
+++ b/Fortran/test/tspx.f
@@ -189,7 +189,7 @@
: SPEC2(NSPEC), TOL
CHARACTER FROM*(*), TO*(*)
- PARAMETER (TOL = 1D-9)
+ PARAMETER (TOL = 2D-9)
INTEGER FWD, REV
EXTERNAL FWD, REV
|