Commit 4a9d072c authored by baxley's avatar baxley Committed by Commit Bot

Disable NoIPv6OnWifi on iOS.

This test causes HttpNetworkTransactionTests tests to crash on iOS.

BUG=728808
TBR=mef

Review-Url: https://codereview.chromium.org/2920733003
Cr-Commit-Position: refs/heads/master@{#476471}
parent 4f12cd4f
......@@ -2407,7 +2407,14 @@ TEST_F(HostResolverImplDnsTest, ManuallyDisableDnsClientWithPendingRequests) {
EXPECT_TRUE(requests_[2]->HasOneAddress("192.168.0.3", 80));
}
TEST_F(HostResolverImplDnsTest, NoIPv6OnWifi) {
// TODO(crbug.com/728808): This test causes HttpNetworkTransactionTests to crash
// on iOS.
#if defined(OS_IOS)
#define MAYBE_NoIPv6OnWifi DISABLED_NoIPv6OnWifi
#else
#define MAYBE_NoIPv6OnWifi NoIPv6OnWifi
#endif
TEST_F(HostResolverImplDnsTest, MAYBE_NoIPv6OnWifi) {
test::ScopedMockNetworkChangeNotifier notifier;
CreateSerialResolver(); // To guarantee order of resolutions.
resolver_->SetNoIPv6OnWifi(true);
......
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