[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and
From: |
Mark H. Weaver |
Subject: |
12/13: TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and ARM. |
Date: |
Wed, 09 Sep 2015 05:11:27 +0000 |
mhw pushed a commit to branch wip-loongson2f
in repository guix.
commit 27ab9c74e5597c57d41a5ba246afeb054fef0144
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"))
- branch wip-loongson2f created (now c67cec7), Mark H. Weaver, 2015/09/09
- 01/13: system: grub: On MIPS, the linux image name is vmlinuz, not bzImage., Mark H. Weaver, 2015/09/09
- 03/13: linux-initrd: Use pata_acpi, pata_atiixp, and isci modules only on Intel., Mark H. Weaver, 2015/09/09
- 02/13: system: grub: Adjust eye-candy to work on non-Intel systems., Mark H. Weaver, 2015/09/09
- 04/13: gnu: linux-libre: Add 'supported-systems' field: Intel only for now., Mark H. Weaver, 2015/09/09
- 06/13: gnu: linux-libre: On MIPS, the linux image name is vmlinuz, not bzImage., Mark H. Weaver, 2015/09/09
- 08/13: gnu: grub: Use modify-phases and other minor cleanups., Mark H. Weaver, 2015/09/09
- 09/13: gnu: grub: Install documentation., Mark H. Weaver, 2015/09/09
- 05/13: gnu: linux-libre: Add case for ARCH=mips., Mark H. Weaver, 2015/09/09
- 12/13: TEMPORARY_HACK: gnu: gst-plugins-base: Disable tests on MIPS and ARM.,
Mark H. Weaver <=
- 10/13: gnu: grub: Update to 2.02-beta2-500-gba218c1., Mark H. Weaver, 2015/09/09
- 13/13: NON_INTEL_ONLY: services: xorg: Remove xf86-video-intel., Mark H. Weaver, 2015/09/09
- 11/13: gnu: grub: Add support for Loongson-based machines., Mark H. Weaver, 2015/09/09
- 07/13: gnu: Add linux-libre-loongson2f., Mark H. Weaver, 2015/09/09