guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: gstreamer: Disable two tests on i686.


From: guix-commits
Subject: 01/03: gnu: gstreamer: Disable two tests on i686.
Date: Tue, 21 Jan 2020 15:30:40 -0500 (EST)

mbakke pushed a commit to branch staging
in repository guix.

commit 0025a1d31eb1d0aedb9e13a60ba36b9a13b67461
Author: Marius Bakke <address@hidden>
AuthorDate: Tue Jan 21 21:10:49 2020 +0100

    gnu: gstreamer: Disable two tests on i686.
    
    * gnu/packages/gstreamer.scm (gstreamer)[arguments]: Add phase when building
    for i686 systems.
---
 gnu/packages/gstreamer.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 6fd683c..ce4eb70 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -119,8 +119,22 @@ arrays of data.")
     (build-system meson-build-system)
     (outputs '("out" "doc"))
     (arguments
-     '(#:phases
+     `(#:phases
        (modify-phases %standard-phases
+         ;; FIXME: Since switching to the meson-build-system, two tests
+         ;; started failing on i686.  See
+         ;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/499>.
+         ,@(if (string-prefix? "i686" (or (%current-target-system)
+                                          (%current-system)))
+               `((add-after 'unpack 'disable-some-tests
+                   (lambda _
+                     (substitute* "tests/check/gst/gstsystemclock.c"
+                       (("tcase_add_test \\(tc_chain, 
test_stress_cleanup_unschedule.*")
+                        "")
+                       (("tcase_add_test \\(tc_chain, 
test_stress_reschedule.*")
+                      ""))
+                     #t)))
+               '())
          (add-after 'install 'move-docs
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out"))



reply via email to

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