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}
This commit is contained in:
danilchap 2016-12-22 07:51:54 -08:00 committed by Commit bot
parent ebafdc8484
commit bf5f5297c5

View File

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