guix-commits
[Top][All Lists]
Advanced

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

14/14: TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and


From: Mark H. Weaver
Subject: 14/14: TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and ARM.
Date: Wed, 30 Sep 2015 22:13:24 +0000

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

commit 8692ab8c5cc39a461ffd6ef70281cef8abccf86f
Author: Mark H Weaver <address@hidden>
Date:   Wed Aug 12 13:31:57 2015 -0400

    TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and ARM.
    
    * gnu/packages/gstreamer.scm (gst-plugins-base)[arguments]: Disable tests on
      MIPS and ARM.
---
 gnu/packages/gstreamer.scm |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 920da6c..bfc2ba6 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -162,7 +162,12 @@ This package provides the core library and elements.")
         ("gobject-introspection" ,gobject-introspection)
         ("python-wrapper" ,python-wrapper)))
     (arguments
-     `(#:configure-flags
+     `(,@(if (or (string-prefix? "mips" (%current-system))
+                 (string-prefix? "arm" (%current-system)))
+             ;; XXX FIXME Several tests fail on MIPS and ARM.
+             '(#:tests? #f)
+             '())
+       #:configure-flags
        (list (string-append "--with-html-dir="
                             (assoc-ref %outputs "doc")
                             "/share/gtk-doc/html"))



reply via email to

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