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

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVivia Nikolaidou <vivia@ahiru.eu>2023-06-23 16:05:26 +0300
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2023-06-26 15:33:31 +0300
commit8366716456cff112afcbd621f339f07a8e828bbe (patch)
tree21647de6c41d4cb0ca653a7ff12527ca87e7620d /utils
parenteffe1bacdfdb693a8bcae48f10996d98a6646565 (diff)
togglerecord: Change test_two_stream_close_open_nonlivein_liveout timeout to 60ms
20ms was not enough for the CI. Closes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/379 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1258>
Diffstat (limited to 'utils')
-rw-r--r--utils/togglerecord/tests/tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/togglerecord/tests/tests.rs b/utils/togglerecord/tests/tests.rs
index 1a72881f4..e59fcdfcc 100644
--- a/utils/togglerecord/tests/tests.rs
+++ b/utils/togglerecord/tests/tests.rs
@@ -1020,7 +1020,7 @@ fn test_two_stream_close_open_nonlivein_liveout() {
.send(SendData::Buffers(main_buffers_in_gap as usize))
.unwrap();
assert_eq!(
- receiver_input_done_1.recv_timeout(Duration::from_millis(20)),
+ receiver_input_done_1.recv_timeout(Duration::from_millis(60)),
Err(mpsc::RecvTimeoutError::Timeout)
);
@@ -1029,7 +1029,7 @@ fn test_two_stream_close_open_nonlivein_liveout() {
.send(SendData::Buffers((secondary_buffers_in_gap) as usize))
.unwrap();
assert_eq!(
- receiver_input_done_2.recv_timeout(Duration::from_millis(20)),
+ receiver_input_done_2.recv_timeout(Duration::from_millis(60)),
Err(mpsc::RecvTimeoutError::Timeout)
);