diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-07-19 12:16:21 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-19 17:04:18 +0200 |
commit | 59027f2a3f84db5ad567cb5e9d571468b07ca70b (patch) | |
tree | b4d4d0d4b1ff1837c67f395ad67fbfd3b919b38e | |
parent | e40e0bfd2c8e4d91c19dd931ff9cbe5e54ba98a5 (diff) |
gnu: lib2geom: Skip angle-test on i686.
* gnu/packages/maths.scm (gsl)[skip-faulty-test]: Also disable angle-test
on i686.
-rw-r--r-- | gnu/packages/graphics.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 37249c9138..519a341a1b 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -1153,6 +1153,9 @@ exception-handling library.") #~((add-after 'unpack 'skip-faulty-test (lambda _ (substitute* "tests/CMakeLists.txt" + ;; This test fails at various comparions of ±π. + (("angle-test") "") + ;; This test fails on i686 when comparing floating point ;; values, probably due to excess precision. However, ;; '-fexcess-precision' is not implemented for C++ in |