Commit da605e17 authored by jam's avatar jam Committed by Commit bot

Disable flaky ExtensionPreferenceApiTest.DataReductionProxy on Windows.

BUG=477844
TBR=kundaji@chromium.org

Review URL: https://codereview.chromium.org/1097623002

Cr-Commit-Position: refs/heads/master@{#325555}
parent 2300ec2b
...@@ -334,7 +334,12 @@ IN_PROC_BROWSER_TEST_F(ExtensionPreferenceApiTest, OnChangeSplit) { ...@@ -334,7 +334,12 @@ IN_PROC_BROWSER_TEST_F(ExtensionPreferenceApiTest, OnChangeSplit) {
EXPECT_TRUE(catcher_incognito.GetNextResult()) << catcher.message(); EXPECT_TRUE(catcher_incognito.GetNextResult()) << catcher.message();
} }
IN_PROC_BROWSER_TEST_F(ExtensionPreferenceApiTest, DataReductionProxy) { #if defined(OS_WIN) // http://crbug.com/477844
#define MAYBE_DataReductionProxy DISABLED_DataReductionProxy
#else
#define MAYBE_DataReductionProxy DataReductionProxy
#endif
IN_PROC_BROWSER_TEST_F(ExtensionPreferenceApiTest, MAYBE_DataReductionProxy) {
EXPECT_TRUE(RunExtensionTest("preference/data_reduction_proxy")) << EXPECT_TRUE(RunExtensionTest("preference/data_reduction_proxy")) <<
message_; message_;
} }
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