Commit 30d83c2a authored by tbansal's avatar tbansal Committed by Commit bot

Disable the flaky NetworkQualityEstimator unittest on ios_simulator

Disable the test until it is clear why it is flaky.

BUG=641708
TBR=bengr@chromium.org

Review-Url: https://codereview.chromium.org/2560253002
Cr-Commit-Position: refs/heads/master@{#437637}
parent 37390ae1
......@@ -1455,9 +1455,18 @@ TEST(NetworkQualityEstimatorTest, TestThroughputNoRequestOverlap) {
}
}
#if defined(OS_IOS)
// Flaky on iOS: crbug.com/672917.
#define MAYBE_TestEffectiveConnectionTypeObserver \
DISABLED_TestEffectiveConnectionTypeObserver
#else
#define MAYBE_TestEffectiveConnectionTypeObserver \
TestEffectiveConnectionTypeObserver
#endif
// Tests that the effective connection type is computed at the specified
// interval, and that the observers are notified of any change.
TEST(NetworkQualityEstimatorTest, TestEffectiveConnectionTypeObserver) {
TEST(NetworkQualityEstimatorTest, MAYBE_TestEffectiveConnectionTypeObserver) {
base::HistogramTester histogram_tester;
std::unique_ptr<base::SimpleTestTickClock> tick_clock(
new base::SimpleTestTickClock());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment