Commit 1629eeea authored by atwilson@chromium.org's avatar atwilson@chromium.org

Disable ExtensionApiTest.Rlz which has become too flaky

TBR=rogerta@chromium.org
BUG=137834
TEST=none


Review URL: https://chromiumcodereview.appspot.com/10829017

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148429 0039d316-1c4b-4281-b951-d872f2087c98
parent 729b4851
...@@ -46,7 +46,14 @@ ExtensionFunction* MockRlzSendFinancialPingFunctionFactory() { ...@@ -46,7 +46,14 @@ ExtensionFunction* MockRlzSendFinancialPingFunctionFactory() {
return new MockRlzSendFinancialPingFunction(); return new MockRlzSendFinancialPingFunction();
} }
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Rlz) { // Mac is flaky - http://crbug.com/137834.
#if defined(OS_MACOSX)
#define MAYBE_Rlz DISABLED_Rlz
#else
#define MAYBE_Rlz Rlz
#endif
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_Rlz) {
// The default test resolver doesn't allow lookups to *.google.com. That // The default test resolver doesn't allow lookups to *.google.com. That
// makes sense, but it does make RLZ's SendFinancialPing() fail -- so allow // makes sense, but it does make RLZ's SendFinancialPing() fail -- so allow
// connections to google.com in this test. // connections to google.com in this test.
......
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