guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: ode: Selectively disable tests.


From: guix-commits
Subject: branch master updated: gnu: ode: Selectively disable tests.
Date: Sat, 25 Jan 2020 13:34:51 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5b7fdc8  gnu: ode: Selectively disable tests.
5b7fdc8 is described below

commit 5b7fdc8289ce0adf85e881bc23d3537121b41193
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Sat Jan 25 19:33:57 2020 +0100

    gnu: ode: Selectively disable tests.
    
    * gnu/packages/game-development.scm (ode)[arguments]: Run tests only on
    x86_64.
---
 gnu/packages/game-development.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 72637a7..13006f3 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1998,7 +1998,10 @@ a.k.a. XenoCollide) as described in Game Programming 
Gems 7.")
            #t))))
     (build-system cmake-build-system)
     (arguments
-     `(#:tests? #f                      ;tests fail on all systems but x86_64
+     ;; Tests fail on all systems but x86_64.
+     `(#:tests? ,(string=? "x86_64-linux"
+                           (or (%current-target-system)
+                               (%current-system)))
        #:configure-flags '("-DODE_WITH_LIBCCD_SYSTEM=ON")
        #:phases
        (modify-phases %standard-phases



reply via email to

[Prev in Thread] Current Thread [Next in Thread]