| Index: chrome/browser/captive_portal/captive_portal_browsertest.cc
|
| diff --git a/chrome/browser/captive_portal/captive_portal_browsertest.cc b/chrome/browser/captive_portal/captive_portal_browsertest.cc
|
| index ad2345c06cc47516b09a939425e4236593693f47..5adb086f7977ab9354c14579ef479c71d009e53d 100644
|
| --- a/chrome/browser/captive_portal/captive_portal_browsertest.cc
|
| +++ b/chrome/browser/captive_portal/captive_portal_browsertest.cc
|
| @@ -2070,10 +2070,19 @@ IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest,
|
| GetStateOfTabReloaderAt(browser(), 0));
|
| }
|
|
|
| +// This test is very flaky on Linux and is disabled.
|
| +// https://crbug.com/453875
|
| +#if defined(OS_LINUX)
|
| +#define MAYBE_InterstitialTimerReloadWhileLoading \
|
| + DISABLED_InterstitialTimerReloadWhileLoading
|
| +#else
|
| +#define MAYBE_InterstitialTimerReloadWhileLoading \
|
| + InterstitialTimerReloadWhileLoading
|
| +#endif
|
| // Same as above, but instead of stopping, the loading page is reloaded. The end
|
| // result is the same. (i.e. page load stops, no interstitials shown)
|
| IN_PROC_BROWSER_TEST_F(CaptivePortalBrowserTest,
|
| - InterstitialTimerReloadWhileLoading) {
|
| + MAYBE_InterstitialTimerReloadWhileLoading) {
|
| net::SpawnedTestServer::SSLOptions https_options;
|
| https_options.server_certificate =
|
| net::SpawnedTestServer::SSLOptions::CERT_MISMATCHED_NAME;
|
|
|