guix-commits
[Top][All Lists]
Advanced

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

01/15: gnu: gst-plugins-base: Disable tests on MIPS and ARM.


From: Mark H. Weaver
Subject: 01/15: gnu: gst-plugins-base: Disable tests on MIPS and ARM.
Date: Mon, 24 Aug 2015 03:16:30 +0000

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

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

    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 717388b..38d5b4b 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]