guix-commits
[Top][All Lists]
Advanced

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

branch staging updated: gnu: gstreamer: Disable failing tests on i686 ag


From: guix-commits
Subject: branch staging updated: gnu: gstreamer: Disable failing tests on i686 again.
Date: Fri, 16 Sep 2022 18:37:46 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch staging
in repository guix.

The following commit(s) were added to refs/heads/staging by this push:
     new 09efea1ce0 gnu: gstreamer: Disable failing tests on i686 again.
09efea1ce0 is described below

commit 09efea1ce07414ad8666b2ac2e3ac07db491cd21
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Sep 17 00:36:28 2022 +0200

    gnu: gstreamer: Disable failing tests on i686 again.
    
    * gnu/packages/gstreamer.scm (gstreamer)[arguments]: Disable two tests on
    i686-linux.
---
 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 943f46eeb5..a6687f411f 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -479,7 +479,21 @@ the GStreamer multimedia framework.")
     (arguments
      (list #:phases
            #~(modify-phases %standard-phases
-               #$@%common-gstreamer-phases)))
+               #$@%common-gstreamer-phases
+               #$@(if (string-prefix? "i686" (or (%current-target-system)
+                                                 (%current-system)))
+                      ;; FIXME: These tests consistently fail in the Guix CI:
+                      ;;   https://issues.guix.gnu.org/57868
+                      '((add-after 'unpack 'disable-systemclock-test
+                          (lambda _
+                            (substitute* "tests/check/gst/gstsystemclock.c"
+                              (("tcase_add_test \\(tc_chain, \
+test_stress_cleanup_unschedule.*")
+                               "")
+                              (("tcase_add_test \\(tc_chain, \
+test_stress_reschedule.*")
+                               "")))))
+                      '()))))
     (propagated-inputs
      ;; In gstreamer-1.0.pc:
      ;;   Requires: glib-2.0, gobject-2.0



reply via email to

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