guix-patches
[Top][All Lists]
Advanced

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

[bug#58773] [PATCH] gnu: gst-plugins-bad: Skip elements/camerabin test o


From: Christopher Baines
Subject: [bug#58773] [PATCH] gnu: gst-plugins-bad: Skip elements/camerabin test on some systems.
Date: Tue, 25 Oct 2022 11:49:38 +0100

It seems to frequently fail on i686-linux and aarch64-linux.

* gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Skip the
elements/camerabin test on i686-linux and aarch64-linux.
---
 gnu/packages/gstreamer.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index a92588a9e2..c211816bf8 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -791,6 +791,14 @@ (define-public gst-plugins-bad
                   ;; FIXME: Why is this failing.
                   ((".*elements/dash_mpd\\.c.*") "")
 
+                  #$@(if (member (%current-system)
+                                 '("i686-linux" "aarch64-linux"))
+                         ;; This test is flaky:
+                         ;; 
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1244
+                         `((("'elements/camerabin\\.c'\\]\\],")
+                            "'elements/camerabin.c'], true, ],"))
+                         '())
+
                   ;; These tests are flaky and occasionally time out:
                   ;; 
https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/932
                   ((".*elements/curlhttpsrc\\.c.*") "")
-- 
2.37.3






reply via email to

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