gnu: elfutils: Disable test suite on MIPS.
* gnu/packages/elf.scm (elfutils)[arguments]: Add (#:tests? #f) on MIPS.
This commit is contained in:
parent
7394e264fc
commit
8b71684a20
|
@ -56,6 +56,14 @@
|
||||||
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
`(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/lib"))
|
"/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
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; No reason has been found for this test to reliably fail on aarch64-linux.
|
;; No reason has been found for this test to reliably fail on aarch64-linux.
|
||||||
|
|
Loading…
Reference in New Issue