Disable unittests that failed ASan LSan tests
ExtensionApiTest.DisplayModeWindowIsInFullscreen and
ChromeNavigationBrowserTest.TransientEntryPreservedOnMultipleNavigationsDuringInterstitial
started to fail after patch crrev.com/c/1292513
Given that the patch was landed 4 hours ago, will disable the tests and
assign the bug to the patch owner.
[email protected]
NOTRY=true
Bug: 897879
Change-Id: I559a1820293fe057eebb628b9d5aa962f1999020
Reviewed-on: https://chromium-review.googlesource.com/c/1294599
Commit-Queue: Yi Gu <[email protected]>
Reviewed-by: Yi Gu <[email protected]>
Cr-Commit-Position: refs/heads/master@{#601702}
diff --git a/chrome/browser/chrome_navigation_browsertest.cc b/chrome/browser/chrome_navigation_browsertest.cc
index 9c05238..99cb77e 100644
--- a/chrome/browser/chrome_navigation_browsertest.cc
+++ b/chrome/browser/chrome_navigation_browsertest.cc
@@ -99,12 +99,22 @@
DISALLOW_COPY_AND_ASSIGN(DidStartNavigationObserver);
};
+#if defined(OS_LINUX) || defined(OS_CHROMEOS)
+// Fails on chromium.memory/Linux Chromium OS ASan LSan:
+// https://crbug.com/897879
+#define MAYBE_TransientEntryPreservedOnMultipleNavigationsDuringInterstitial \
+ DISABLED_TransientEntryPreservedOnMultipleNavigationsDuringInterstitial
+#else
+#define MAYBE_TransientEntryPreservedOnMultipleNavigationsDuringInterstitial \
+ TransientEntryPreservedOnMultipleNavigationsDuringInterstitial
+#endif
+
// Test to verify that navigations are not deleting the transient
// NavigationEntry when showing an interstitial page and the old renderer
// process is trying to navigate. See https://crbug.com/600046.
IN_PROC_BROWSER_TEST_F(
ChromeNavigationBrowserTest,
- TransientEntryPreservedOnMultipleNavigationsDuringInterstitial) {
+ MAYBE_TransientEntryPreservedOnMultipleNavigationsDuringInterstitial) {
StartServerWithExpiredCert();
GURL setup_url =
diff --git a/chrome/browser/extensions/extension_fullscreen_apitest.cc b/chrome/browser/extensions/extension_fullscreen_apitest.cc
index 6a4f07e09..51e9a84 100644
--- a/chrome/browser/extensions/extension_fullscreen_apitest.cc
+++ b/chrome/browser/extensions/extension_fullscreen_apitest.cc
@@ -61,12 +61,14 @@
ASSERT_FALSE(browser()->window()->IsFullscreen());
}
-#if defined(OS_MACOSX)
+#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_CHROMEOS)
// Fails on MAC: http://crbug.com/480370
+// Fails on chromium.memory/Linux Chromium OS ASan LSan:
+// https://crbug.com/897879
#define MAYBE_DisplayModeWindowIsInFullscreen DISABLED_DisplayModeWindowIsInFullscreen
#else
#define MAYBE_DisplayModeWindowIsInFullscreen DisplayModeWindowIsInFullscreen
-#endif // defined(OS_MACOSX)
+#endif
IN_PROC_BROWSER_TEST_F(ExtensionApiTest,
MAYBE_DisplayModeWindowIsInFullscreen) {