| 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 1966e07226f5d5efa132be1404385e31f6c0fc9e..6938cc34edd2d33ef8b643449dbe07b9cb799852 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
|
| @@ -139,7 +139,13 @@ class DataReductionProxyInterceptorTest : public testing::Test {
|
| scoped_ptr<net::TestURLRequestContext> default_context_;
|
| };
|
|
|
| -TEST_F(DataReductionProxyInterceptorTest, TestJobFactoryChaining) {
|
| +// Disabled on Mac due to flakiness. See crbug.com/601562.
|
| +#if defined(OS_MACOSX)
|
| +#define MAYBE_TestJobFactoryChaining DISABLED_TestJobFactoryChaining
|
| +#else
|
| +#define MAYBE_TestJobFactoryChaining TestJobFactoryChaining
|
| +#endif
|
| +TEST_F(DataReductionProxyInterceptorTest, MAYBE_TestJobFactoryChaining) {
|
| // Verifies that job factories can be chained.
|
| scoped_ptr<net::URLRequestJobFactory> impl(
|
| new net::URLRequestJobFactoryImpl());
|
|
|