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}
This commit is contained in:
aleloi 2017-01-27 03:32:16 -08:00 committed by Commit bot
parent 69221db534
commit 89da1601a6

View File

@ -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,