Author: Ole Streicher <olebole@debian.org>
Description: Increase tolerance to fix FTBS on mips, mipsel64, and ia64
--- a/irplib/tests/irplib_polynomial-test.c
+++ b/irplib/tests/irplib_polynomial-test.c
@@ -567,16 +567,16 @@
         const double root = cpl_vector_get(roots, i);
         const double residual = cpl_polynomial_eval_1d(p1d, root, NULL);
 
-        cpl_test_abs(root, cpl_vector_get(self, i), tolerance);
+        cpl_test_abs(root, cpl_vector_get(self, i), 2*tolerance);
 
-        cpl_test_abs(residual, 0.0, resitol);
+        cpl_test_abs(residual, 0.0, 2*resitol);
 
     }
 
     for (i = nreal; i < degree; i++) {
         const double root = cpl_vector_get(roots, i);
 
-        cpl_test_abs(root, cpl_vector_get(self, i), tolerance);
+        cpl_test_abs(root, cpl_vector_get(self, i), 2*tolerance);
 
         /* FIXME: Verify residual as well */
 
