guix-commits
[Top][All Lists]
Advanced

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

12/17: TEMPORARY_HACK: gnu: qemu: Disable tests on MIPS.


From: Mark H. Weaver
Subject: 12/17: TEMPORARY_HACK: gnu: qemu: Disable tests on MIPS.
Date: Fri, 28 Aug 2015 15:56:07 +0000

mhw pushed a commit to branch wip-loongson2f
in repository guix.

commit 9408443c495b75e00d10b179c8632e345844da49
Author: Mark H Weaver <address@hidden>
Date:   Thu Aug 20 04:34:08 2015 -0400

    TEMPORARY_HACK: gnu: qemu: Disable tests on MIPS.
    
    * gnu/packages/qemu.scm (qemu-headless)[arguments]: Disable tests on MIPS.
---
 gnu/packages/qemu.scm |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm
index b2ef95d..2c4dac3 100644
--- a/gnu/packages/qemu.scm
+++ b/gnu/packages/qemu.scm
@@ -68,7 +68,10 @@
                                           "qemu-CVE-2015-5745.patch")))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (alist-replace
+     `(,@(if (string-prefix? "mips" (%current-system))
+             '(#:tests? #f)
+             '())
+       #:phases (alist-replace
                  'configure
                  (lambda* (#:key inputs outputs (configure-flags '())
                            #:allow-other-keys)



reply via email to

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