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

Unified Diff: content/test/content_browser_test_test.cc

Issue 402613007: ContentBrowserTestSanityTest.SingleProcess is failing on Mac ASan. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: content/test/content_browser_test_test.cc
diff --git a/content/test/content_browser_test_test.cc b/content/test/content_browser_test_test.cc
index 1714f0b6cfce598120c7dc80dc4e08fa37481286..3ff4ccb36d6ae51b360b5947b848b7dea6ed5a4d 100644
--- a/content/test/content_browser_test_test.cc
+++ b/content/test/content_browser_test_test.cc
@@ -43,7 +43,13 @@ IN_PROC_BROWSER_TEST_F(ContentBrowserTestSanityTest, Basic) {
Test();
}
-IN_PROC_BROWSER_TEST_F(ContentBrowserTestSanityTest, SingleProcess) {
+#if defined(OS_MACOSX)
+// This is failing on Mac ASan: http://crbug.com/394775
+#define MAYBE_SingleProcess DISABLED_SingleProcess
+#else
+#define MAYBE_SingleProcess SingleProcess
+#endif
+IN_PROC_BROWSER_TEST_F(ContentBrowserTestSanityTest, MAYBE_SingleProcess) {
Test();
}
« 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