From bf5f5297c5b49251191bc2c9d76e4468d25beda4 Mon Sep 17 00:00:00 2001 From: danilchap Date: Thu, 22 Dec 2016 07:51:54 -0800 Subject: [PATCH] Disable flaky VideoSendStreamTest.RemoveOverheadeFromBandwidth BUG=webrtc:6886 NOTRY=True TBR=stefan@webrtc.org Review-Url: https://codereview.webrtc.org/2596223002 Cr-Commit-Position: refs/heads/master@{#15761} --- webrtc/video/video_send_stream_tests.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webrtc/video/video_send_stream_tests.cc b/webrtc/video/video_send_stream_tests.cc index e0f9962c6e..b3618dad92 100644 --- a/webrtc/video/video_send_stream_tests.cc +++ b/webrtc/video/video_send_stream_tests.cc @@ -3168,10 +3168,16 @@ TEST_F(VideoSendStreamTest, TestRequestSourceRotateVideo(true); } +// Flaky on Win32 Release: http://crbug.com/webrtc/6886 +#if defined(WEBRTC_WIN) +#define MAYBE_RemoveOverheadFromBandwidth DISABLED_RemoveOverheadFromBandwidth +#else +#define MAYBE_RemoveOverheadFromBandwidth RemoveOverheadFromBandwidth +#endif // This test verifies that overhead is removed from the bandwidth estimate by // testing that the maximum possible target payload rate is smaller than the // maximum bandwidth estimate by the overhead rate. -TEST_F(VideoSendStreamTest, RemoveOverheadFromBandwidth) { +TEST_F(VideoSendStreamTest, MAYBE_RemoveOverheadFromBandwidth) { test::ScopedFieldTrials override_field_trials( "WebRTC-SendSideBwe-WithOverhead/Enabled/"); class RemoveOverheadFromBandwidthTest : public test::EndToEndTest,