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 <brandtr@webrtc.org>
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22596}
This commit is contained in:
Rasmus Brandt 2018-03-23 13:43:35 +01:00 committed by Commit Bot
parent 04dd176862
commit dc4737bbda

View File

@ -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<VideoFrame> {
public:
Renderer() : event_(false, false) {}