diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-21 21:13:35 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-21 21:29:06 +0100 |
commit | b3c2ebda5bcedcfb88475e53b7f36c3a42cac8b4 (patch) | |
tree | 2bd5b6324d45eb06e4619890b019e804f177ed29 /gnu | |
parent | e003b7591f6c0cff8aeaf0d2063fb8a038a068a1 (diff) | |
download | guix-b3c2ebda5bcedcfb88475e53b7f36c3a42cac8b4.tar.gz guix-b3c2ebda5bcedcfb88475e53b7f36c3a42cac8b4.zip |
gnu: gst-plugins-good: Disable failing tests on armhf-linux.
* gnu/packages/gstreamer.scm (gst-plugins-good)[arguments]: Add phase when
building for armhf-linux.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gstreamer.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 7ff78b2a77..1e26a3ce3e 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -283,6 +283,22 @@ for the GStreamer multimedia library.") (arguments `(#:phases (modify-phases %standard-phases + ,@(if (string-prefix? "arm" (or (%current-target-system) + (%current-system))) + ;; FIXME: These tests started failing on armhf after switching to Meson. + ;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/issues/689 + `((add-after 'unpack 'disable-tests-for-armhf + (lambda _ + (substitute* "tests/check/elements/rtpbin_buffer_list.c" + (("tcase_add_test \\(tc_chain, test_bufferlist\\);") + "")) + (substitute* "tests/check/elements/rtpulpfec.c" + (("tcase_add_loop_test.*rtpulpfecdec_recovered_from_many.*") + "") + (("tcase_add.*rtpulpfecdec_recovered_using_recovered_packet.*") + "")) + #t))) + '()) (add-after 'unpack 'disable-failing-tests (lambda _ |