3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: elfutils: Disable test suite on MIPS.

* gnu/packages/elf.scm (elfutils)[arguments]: Add (#:tests? #f) on MIPS.
This commit is contained in:
Mark H Weaver 2018-06-02 17:12:05 -04:00
parent 7394e264fc
commit 8b71684a20
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -56,6 +56,14 @@
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
(assoc-ref %outputs "out")
"/lib"))
;; Disable tests on MIPS (without changing
;; the arguments list on other systems).
,@(if (string-prefix? "mips" (or (%current-target-system)
(%current-system)))
'(#:tests? #f)
'())
#:phases
(modify-phases %standard-phases
;; No reason has been found for this test to reliably fail on aarch64-linux.