diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-08-21 18:10:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:47 +0200 |
commit | 25f4fd8542daa9d3ca8c44ccbd67b37644038399 (patch) | |
tree | baff58979588d1ac7b4877ca00043e5d193e450b | |
parent | 77e99a79eb744509c2f896c177b6d2870b394f20 (diff) | |
download | guix-25f4fd8542daa9d3ca8c44ccbd67b37644038399.tar.gz guix-25f4fd8542daa9d3ca8c44ccbd67b37644038399.zip |
gnu: lib2geom: Skip failing tests on i686-linux.
* gnu/packages/graphics.scm (lib2geom)[arguments]: Skip 3 more failing
tests on i686-linux.
Change-Id: Ied70ec568f87d0dc77511bfda1d4a3c493a4aba4
-rw-r--r-- | gnu/packages/graphics.scm | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 2e67adab89..61a9f8a92e 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -924,12 +924,19 @@ exception-handling library.") ((target-x86-32?) #~((add-after 'unpack 'skip-faulty-test (lambda _ - ;; This test fails on i686 when comparing floating point - ;; values, probably due to excess precision. However, - ;; '-fexcess-precision' is not implemented for C++ in - ;; GCC 10 so just skip it. (substitute* "tests/CMakeLists.txt" - (("bezier-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 + ;; GCC 10 so just skip it. + (("bezier-test") "") + + ;; https://gitlab.com/inkscape/lib2geom/-/issues/68 + (("ellipse-test") "") + + ;; XXX: Additional unresolved test failures. + (("elliptical-arc-test") "") + (("self-intersections-test") "")))))) ;; See https://gitlab.com/inkscape/lib2geom/-/issues/63 ((target-aarch64?) #~((add-after 'unpack 'fix-aarch64-faulty-test |