From 89da1601a6465b99d61dcaf301f1f7041df80604 Mon Sep 17 00:00:00 2001 From: aleloi Date: Fri, 27 Jan 2017 03:32:16 -0800 Subject: [PATCH] Disable flaky test VideoSendStreamTest.RemoveOverheadFromBandwidth. Test disabled on Windows due to failures on Win Msan, Win64 Debug, Win SyzyAsan, Win32 Debug and others. TBR=sprang@webrtc.org BUG=webrtc:6886 NOTRY=True Review-Url: https://codereview.webrtc.org/2657233002 Cr-Commit-Position: refs/heads/master@{#16320} --- webrtc/video/video_send_stream_tests.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webrtc/video/video_send_stream_tests.cc b/webrtc/video/video_send_stream_tests.cc index 9ce2bce27e..2d6f9fb660 100644 --- a/webrtc/video/video_send_stream_tests.cc +++ b/webrtc/video/video_send_stream_tests.cc @@ -3169,10 +3169,17 @@ TEST_F(VideoSendStreamTest, TestRequestSourceRotateVideo(true); } +// Flaky on Win 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,