gnu: ode: Selectively disable tests.
* gnu/packages/game-development.scm (ode)[arguments]: Run tests only on x86_64.
This commit is contained in:
parent
df6ce9fcb4
commit
5b7fdc8289
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user