From 2629719b4ec22bd5b23c2c5a61f736ef8be96555 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 12 Mar 2024 16:19:45 +0100 Subject: [PATCH] livesync: disable racy tests https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/328 https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/357 Part-of: --- utils/livesync/tests/livesync.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/livesync/tests/livesync.rs b/utils/livesync/tests/livesync.rs index 595f523b..e90d7810 100644 --- a/utils/livesync/tests/livesync.rs +++ b/utils/livesync/tests/livesync.rs @@ -75,11 +75,15 @@ fn test_video_singlesegment() { } #[test] +// FIXME: racy: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/328 +#[ignore] fn test_audio_singlesegment() { test_audio(true); } #[test] +// FIXME: racy: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/357 +#[ignore] fn test_video_nonsinglesegment() { test_video(false); }