guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: elfutils: Disable test suite on MIPS.


From: Mark H. Weaver
Subject: 01/01: gnu: elfutils: Disable test suite on MIPS.
Date: Mon, 4 Jun 2018 21:22:30 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit 8b71684a2086182528c16b5e21599013420ea84c
Author: Mark H Weaver <address@hidden>
Date:   Sat Jun 2 17:12:05 2018 -0400

    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(+)

diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index eaa9ab5..9b12075 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.



reply via email to

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