diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-26 12:05:21 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-09-26 18:13:29 +0300 |
commit | c06fefeab409843f46b744c56780c400679bfa0e (patch) | |
tree | de88ee49ffdc4d8717120fdad653af339ddedce9 | |
parent | 5c7fb1b82d296124673d53f60daef86f3296e958 (diff) |
gnu: lib2geom: Skip a test on riscv64-linux.
* gnu/packages/graphics.scm (lib2geom)[arguments]: When building for
riscv64-linux add a phase to skip a test known to fail upstream.
Change-Id: Ib328a4b2ed3263f71d6ca846b181eca3e47a3800
-rw-r--r-- | gnu/packages/graphics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index edaa905c7a..7ed5cdc92d 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -963,7 +963,8 @@ exception-handling library.") (("elliptical-arc-test") "") (("self-intersections-test") "")))))) ;; See https://gitlab.com/inkscape/lib2geom/-/issues/63 - ((target-aarch64?) + ((or (target-aarch64?) + (target-riscv64?)) #~((add-after 'unpack 'fix-aarch64-faulty-test (lambda _ (substitute* "tests/CMakeLists.txt" |