diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-01 22:13:18 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-11 20:35:11 -0400 |
commit | 2d0cdf0325520e61c93cf739bd6a970306f76045 (patch) | |
tree | 908540ec553978064a47657b25ca51201e63f8f5 | |
parent | bf608eb36457458c2c1c658639eced526447a232 (diff) |
gnu: gst-plugins-good: Skip the test_video_caps_late test.
* gnu/packages/gstreamer.scm (gst-plugins-good)
[arguments]: Skip the test_video_caps_late test in the skip-failing-tests
phase.
-rw-r--r-- | gnu/packages/gstreamer.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 38845b83af..a89233bbac 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -674,6 +674,11 @@ for the GStreamer multimedia library.") (string-append prefix "\"" libsoup "\"\n"))))) (add-after 'unpack 'skip-failing-tests (lambda _ + (substitute* "tests/check/elements/flvmux.c" + ;; This test randomly times out (see: + ;; https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/786). + ((".*tcase_add_test.*test_video_caps_late.*") + "")) (substitute* "tests/check/meson.build" ;; Reported as shaky upstream, see ;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/785> |