Disable GoogCcNetworkControllerTest.DetectsHighRateInSafeResetTrial

Test is flaky. See linked bug.

TBR=srte@webrtc.org

Bug: webrtc:10036
Change-Id: I21dd0daceaca6071364cb3aec50da79480f4dfcb
Reviewed-on: https://webrtc-review.googlesource.com/c/111747
Reviewed-by: Alex Loiko <aleloi@webrtc.org>
Commit-Queue: Alex Loiko <aleloi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25746}
This commit is contained in:
Alex Loiko
2018-11-22 11:21:11 +01:00
committed by Commit Bot
parent 8ac05ccaa7
commit ecd62056e3

View File

@ -79,7 +79,13 @@ TEST(GoogCcNetworkControllerTest, CutsHighRateInSafeResetTrial) {
EXPECT_NEAR(client->send_bandwidth().kbps(), kStartRate.kbps(), 30);
}
TEST(GoogCcNetworkControllerTest, DetectsHighRateInSafeResetTrial) {
#ifdef WEBRTC_LINUX // bugs.webrtc.org/10036
#define MAYBE_DetectsHighRateInSafeResetTrial \
DISABLED_DetectsHighRateInSafeResetTrial
#else
#define MAYBE_DetectsHighRateInSafeResetTrial DetectsHighRateInSafeResetTrial
#endif
TEST(GoogCcNetworkControllerTest, MAYBE_DetectsHighRateInSafeResetTrial) {
ScopedFieldTrials trial("WebRTC-Bwe-SafeResetOnRouteChange/Enabled/");
const DataRate kInitialLinkCapacity = DataRate::kbps(200);
const DataRate kNewLinkCapacity = DataRate::kbps(800);