[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/15: gnu: gst-plugins-base: Disable tests on MIPS and ARM.
From: |
Mark H. Weaver |
Subject: |
11/15: gnu: gst-plugins-base: Disable tests on MIPS and ARM. |
Date: |
Thu, 20 Aug 2015 06:55:06 +0000 |
mhw pushed a commit to branch wip-loongson2f
in repository guix.
commit b952854e4ad0d19d8a831b2ddf0a4daf118335f6
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"))
- 08/15: system: grub: On MIPS, the linux image name is vmlinuz, not bzImage., (continued)
- 08/15: system: grub: On MIPS, the linux image name is vmlinuz, not bzImage., Mark H. Weaver, 2015/08/20
- 01/15: gnu: linux-libre: Add case for ARCH=mips., Mark H. Weaver, 2015/08/20
- 05/15: gnu: grub: Update to 2.02-beta2-500-gba218c1., Mark H. Weaver, 2015/08/20
- 03/15: gnu: grub: Use modify-phases and other minor cleanups., Mark H. Weaver, 2015/08/20
- 02/15: gnu: Add linux-libre-loongson2f., Mark H. Weaver, 2015/08/20
- 06/15: gnu: grub: Install documentation., Mark H. Weaver, 2015/08/20
- 04/15: gnu: grub: Add comment noting that 'fuse' would be a desirable input., Mark H. Weaver, 2015/08/20
- 14/15: MIPS_ONLY: services: xorg: Remove several drivers (for Yeeloong)., Mark H. Weaver, 2015/08/20
- 13/15: MIPS_ONLY: Don't try to copy modules that don't exist in the loongson2f kernel., Mark H. Weaver, 2015/08/20
- 07/15: gnu: grub: Add support for Loongson-based machines., Mark H. Weaver, 2015/08/20
- 11/15: gnu: gst-plugins-base: Disable tests on MIPS and ARM.,
Mark H. Weaver <=
- 10/15: system: grub: Adjust eye-candy to work on non-Intel systems., Mark H. Weaver, 2015/08/20
- 15/15: MIPS_ONLY: file-systems: Remove hugetlb cgroup filesystem., Mark H. Weaver, 2015/08/20
- 12/15: PRELIMINARY: Fix problem with 'guix system init --nogrub'., Mark H. Weaver, 2015/08/20
- 09/15: system: grub: Convert grub background using rsvg-convert, not inkscape., Mark H. Weaver, 2015/08/20