guix-commits
[Top][All Lists]
Advanced

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

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


From: Mark H. Weaver
Subject: 05/07: TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and ARM.
Date: Thu, 24 Mar 2016 03:21:58 +0000

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

commit 6dda9ee00d800a794685e3d482b644e69a28155a
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 |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 59b1076..a99ea51 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -176,6 +176,11 @@ This package provides the core library and elements.")
         ("python-wrapper" ,python-wrapper)))
     (arguments
      `(#:parallel-tests? #f ; 'pipelines/tcp' fails in parallel
+       ,@(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")



reply via email to

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