Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@onestream.live>2022-05-30 10:23:52 +0300
committerGuillaume Desmottes <guillaume.desmottes@onestream.live>2022-05-30 10:23:52 +0300
commit0dd0acd73872f0e9ad1d48bc99c29e317e5784ab (patch)
tree0ea418cdb2a6d60e49a311b3deee90ec3d3650a6
parentf3270538118d54f7aad140a5ed00eb8ed203ec88 (diff)
uriplaylistbin: disable more tests
Those are not reliable either.
-rw-r--r--utils/uriplaylistbin/tests/uriplaylistbin.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/uriplaylistbin/tests/uriplaylistbin.rs b/utils/uriplaylistbin/tests/uriplaylistbin.rs
index deae33fd..4532358b 100644
--- a/utils/uriplaylistbin/tests/uriplaylistbin.rs
+++ b/utils/uriplaylistbin/tests/uriplaylistbin.rs
@@ -239,6 +239,8 @@ fn assert_stream_selected(msg: gst::Message, n_streams: usize) -> gst::Object {
}
#[test]
+// FIXME: test deadlocks: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/194
+#[ignore]
fn single_audio() {
let (events, current_iteration, current_uri_index) = test(vec![TestMedia::ogg()], 1, 1, true);
assert_eos(events.into_iter().last().unwrap());
@@ -247,6 +249,8 @@ fn single_audio() {
}
#[test]
+// FIXME: test deadlocks: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/194
+#[ignore]
fn single_video() {
let (events, current_iteration, current_uri_index) = test(vec![TestMedia::mkv()], 2, 1, true);
assert_eos(events.into_iter().last().unwrap());
@@ -270,6 +274,8 @@ fn multi_audio() {
}
#[test]
+// FIXME: test deadlocks: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/194
+#[ignore]
fn multi_audio_video() {
let (events, current_iteration, current_uri_index) =
test(vec![TestMedia::mkv(), TestMedia::mkv()], 2, 1, true);