| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
|
| index 40d50fd359e4b3c346211072cae0aa717ccdd64a..11b7b1eb809e17b0cd0f1a36798d3b0b84d067d8 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_interceptor_unittest.cc
|
| @@ -476,7 +476,13 @@ TEST_F(DataReductionProxyInterceptorEndToEndTest, RedirectWithBypassAndRetry) {
|
| EXPECT_EQ(std::vector<GURL>(1, GURL("http://foo.com")), request->url_chain());
|
| }
|
|
|
| -TEST_F(DataReductionProxyInterceptorEndToEndTest, RedirectChainToHttps) {
|
| +// https://crbug.com/668197: Flaky on android_n5x_swarming_rel bot.
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_RedirectChainToHttps DISABLED_RedirectChainToHttps
|
| +#else
|
| +#define MAYBE_RedirectChainToHttps RedirectChainToHttps
|
| +#endif
|
| +TEST_F(DataReductionProxyInterceptorEndToEndTest, MAYBE_RedirectChainToHttps) {
|
| // First, a redirect is successfully received through the Data Reduction
|
| // Proxy. HSTS is forced for play.google.com and prebaked into Chrome, so
|
| // http://play.google.com will automatically be redirected to
|
|
|