guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: gst-plugins-good: Disable failing tests on armhf-linux.


From: guix-commits
Subject: 03/03: gnu: gst-plugins-good: Disable failing tests on armhf-linux.
Date: Tue, 21 Jan 2020 15:30:40 -0500 (EST)

mbakke pushed a commit to branch staging
in repository guix.

commit b3c2ebda5bcedcfb88475e53b7f36c3a42cac8b4
Author: Marius Bakke <address@hidden>
AuthorDate: Tue Jan 21 21:13:35 2020 +0100

    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.
---
 gnu/packages/gstreamer.scm | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 7ff78b2..1e26a3c 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 _



reply via email to

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