Commit 3fdf6a85 authored by Fergus Dall's avatar Fergus Dall Committed by Commit Bot

Sheriff: Disable WebViewTest.DownloadCookieIsolation on Linux and Chrome OS due to timeouts

TBR=qinmin@chromium.org

Bug: 994789
Change-Id: Id9e87e7f424997b8511dfc2a5d2150b35571c201
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1810145Reviewed-by: default avatarFergus Dall <sidereal@google.com>
Commit-Queue: Fergus Dall <sidereal@google.com>
Cr-Commit-Position: refs/heads/master@{#697473}
parent 9cfa09cd
...@@ -2778,8 +2778,8 @@ class DownloadManagerWaiter : public content::DownloadManager::Observer { ...@@ -2778,8 +2778,8 @@ class DownloadManagerWaiter : public content::DownloadManager::Observer {
} // namespace } // namespace
// TODO(crbug.com/994789): Flaky on MSan. // TODO(crbug.com/994789): Flaky on MSan, Linux, and Chrome OS.
#if defined(MEMORY_SANITIZER) #if defined(MEMORY_SANITIZER) || defined(OS_LINUX) || defined(OS_CHROMEOS)
#define MAYBE_DownloadCookieIsolation DISABLED_DownloadCookieIsolation #define MAYBE_DownloadCookieIsolation DISABLED_DownloadCookieIsolation
#else #else
#define MAYBE_DownloadCookieIsolation DownloadCookieIsolation #define MAYBE_DownloadCookieIsolation DownloadCookieIsolation
...@@ -2924,8 +2924,8 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, PRE_DownloadCookieIsolation_CrossSession) { ...@@ -2924,8 +2924,8 @@ IN_PROC_BROWSER_TEST_F(WebViewTest, PRE_DownloadCookieIsolation_CrossSession) {
content::EnsureCookiesFlushed(profile()); content::EnsureCookiesFlushed(profile());
} }
// TODO(crbug.com/994789): Flaky on ChromeOS. Fix and re-enable the test. // TODO(crbug.com/994789): Flaky on MSan, Linux, and ChromeOS.
#if defined(OS_CHROMEOS) #if defined(MEMORY_SANITIZER) || defined(OS_LINUX) || defined(OS_CHROMEOS)
#define MAYBE_DownloadCookieIsolation_CrossSession \ #define MAYBE_DownloadCookieIsolation_CrossSession \
DISABLED_DownloadCookieIsolation_CrossSession DISABLED_DownloadCookieIsolation_CrossSession
#else #else
......
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