[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: ode: Do not run tests on i686.
From: |
guix-commits |
Subject: |
03/03: gnu: ode: Do not run tests on i686. |
Date: |
Sun, 8 Jan 2023 09:18:47 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 6482525dca9ac6cfbbacbccb0e3f0d2a68583852
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun Jan 8 13:08:53 2023 +0100
gnu: ode: Do not run tests on i686.
* gnu/packages/game-development.scm (ode)[arguments]: Do not run tests on
i686.
---
gnu/packages/game-development.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index 54bafdc847..a06e0f9fbf 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -2405,6 +2405,8 @@ a.k.a. XenoCollide) as described in Game Programming Gems
7.")
(build-system cmake-build-system)
(arguments
(list
+ ;; XXX: The sole test is failing on i686 due to a rounding error.
+ #:tests? (not (target-x86-32?))
#:configure-flags #~(list "-DODE_WITH_LIBCCD_SYSTEM=ON")
#:phases
#~(modify-phases %standard-phases