From 8b71684a2086182528c16b5e21599013420ea84c Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sat, 2 Jun 2018 17:12:05 -0400 Subject: gnu: elfutils: Disable test suite on MIPS. * gnu/packages/elf.scm (elfutils)[arguments]: Add (#:tests? #f) on MIPS. --- gnu/packages/elf.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm index eaa9ab5f51..9b120751d2 100644 --- a/gnu/packages/elf.scm +++ b/gnu/packages/elf.scm @@ -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. -- cgit v1.2.3