Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Unified Diff: chrome/browser/extensions/api/automation/automation_apitest.cc

Issue 336423002: Disables the Actions test on linux ASAN (flakiness). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/automation/automation_apitest.cc
diff --git a/chrome/browser/extensions/api/automation/automation_apitest.cc b/chrome/browser/extensions/api/automation/automation_apitest.cc
index ab0b97faf2b7e726778df08e935c93247ee940c2..692df7bceb87b0f22e6db2847df1a71ba5936111 100644
--- a/chrome/browser/extensions/api/automation/automation_apitest.cc
+++ b/chrome/browser/extensions/api/automation/automation_apitest.cc
@@ -110,7 +110,14 @@ IN_PROC_BROWSER_TEST_F(AutomationApiTest, Events) {
<< 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();
ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "actions.html"))
<< message_;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698