Disables the Actions test on linux ASAN (flakiness).

BUG=385701
TBR=aboxhall@chromium.org

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277869 0039d316-1c4b-4281-b951-d872f2087c98
parent bc31cbb6
...@@ -110,7 +110,14 @@ IN_PROC_BROWSER_TEST_F(AutomationApiTest, Events) { ...@@ -110,7 +110,14 @@ IN_PROC_BROWSER_TEST_F(AutomationApiTest, Events) {
<< message_; << message_;
} }
IN_PROC_BROWSER_TEST_F(AutomationApiTest, Actions) { #if defined(OS_LINUX) && defined(ADDRESS_SANITIZER)
// Timing out on linux ASan bot: http://crbug.com/385701
#define MAYBE_Actions DISABLED_Actions
#else
#define MAYBE_Actions Actions
#endif
IN_PROC_BROWSER_TEST_F(AutomationApiTest, MAYBE_Actions) {
StartEmbeddedTestServer(); StartEmbeddedTestServer();
ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "actions.html")) ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "actions.html"))
<< 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