From dc4737bbdacc7ff662af0f0c33ac9bb8a5ddb28b Mon Sep 17 00:00:00 2001 From: Rasmus Brandt Date: Fri, 23 Mar 2018 13:43:35 +0100 Subject: [PATCH] Disable FieldTrials/CallOperationEndToEndTest.TransmitsFirstFrame/2 due to flakiness. TBR=srte@webrtc.org Bug: webrtc:9060 Change-Id: I78e552dc066e628acf6ebea982f33e4e68e562e6 Reviewed-on: https://webrtc-review.googlesource.com/64443 Commit-Queue: Rasmus Brandt Reviewed-by: Sebastian Jansson Cr-Commit-Position: refs/heads/master@{#22596} --- video/end_to_end_tests/call_operation_tests.cc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/video/end_to_end_tests/call_operation_tests.cc b/video/end_to_end_tests/call_operation_tests.cc index d90b85ef05..64abd76194 100644 --- a/video/end_to_end_tests/call_operation_tests.cc +++ b/video/end_to_end_tests/call_operation_tests.cc @@ -154,7 +154,16 @@ TEST_P(CallOperationEndToEndTest, RendersSingleDelayedFrame) { }); } -TEST_P(CallOperationEndToEndTest, TransmitsFirstFrame) { +// TODO(bugs.webrtc.org/9060): Re-enable this test with the TaskQueue when it +// is no longer flaky. +class CallOperationEndToEndTestNoTaskQueueCongestionControl + : public CallOperationEndToEndTest {}; +INSTANTIATE_TEST_CASE_P(FieldTrials, + CallOperationEndToEndTestNoTaskQueueCongestionControl, + ::testing::Values("WebRTC-RoundRobinPacing/Disabled/", + "WebRTC-RoundRobinPacing/Enabled/")); +TEST_P(CallOperationEndToEndTestNoTaskQueueCongestionControl, + TransmitsFirstFrame) { class Renderer : public rtc::VideoSinkInterface { public: Renderer() : event_(false, false) {}