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

Unified Diff: chrome/browser/extensions/activity_log/activity_log_browsertest.cc

Issue 2894173003: Disable ActivityLogPrerenderTest.TestScriptInjected on Mac ASAN. (Closed)
Patch Set: Created 3 years, 7 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/activity_log/activity_log_browsertest.cc
diff --git a/chrome/browser/extensions/activity_log/activity_log_browsertest.cc b/chrome/browser/extensions/activity_log/activity_log_browsertest.cc
index 1dbe015f0a4af7578db4e62b968bf5a9c597768e..870c526b9ddf6c10a3391a729c7fb7583b086b5e 100644
--- a/chrome/browser/extensions/activity_log/activity_log_browsertest.cc
+++ b/chrome/browser/extensions/activity_log/activity_log_browsertest.cc
@@ -71,7 +71,14 @@ class ActivityLogPrerenderTest : public ExtensionApiTest {
}
};
-IN_PROC_BROWSER_TEST_F(ActivityLogPrerenderTest, TestScriptInjected) {
+// https://crbug.com/724553
+#if defined(OS_MACOSX) && defined(ADDRESS_SANITIZER)
+#define MAYBE_TestScriptInjected DISABLED_TestScriptInjected
+#else
+#define MAYBE_TestScriptInjected TestScriptInjected
+#endif // defined(OS_MACOSX) && defined(ADDRESS_SANITIZER)
+
+IN_PROC_BROWSER_TEST_F(ActivityLogPrerenderTest, MAYBE_TestScriptInjected) {
ASSERT_TRUE(StartEmbeddedTestServer());
uint16_t port = embedded_test_server()->port();
« 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