Commit 49a57d54 authored by ellyjones's avatar ellyjones Committed by Commit bot

sessions: disable ContinueWhereILeftOffTest on Mac

This test (and possibly the others in this set) are
flaky on Mac.

BUG=709504
TBR=sky@chromium.org

Review-Url: https://codereview.chromium.org/2805533006
Cr-Commit-Position: refs/heads/master@{#462894}
parent a2d89c5a
...@@ -594,9 +594,16 @@ IN_PROC_BROWSER_TEST_F(ContinueWhereILeftOffTest, ...@@ -594,9 +594,16 @@ IN_PROC_BROWSER_TEST_F(ContinueWhereILeftOffTest,
CheckFormRestored(new_browser, false, false); CheckFormRestored(new_browser, false, false);
} }
// Flaky on Mac: https://crbug.com/709504
#if defined(OS_MACOSX)
#define MAYBE_SessionCookiesCloseAllBrowsers \
DISABLED_SessionCookiesCloseAllBrowsers
#else
#define MAYBE_SessionCookiesCloseAllBrowsers SessionCookiesCloseAllBrowsers
#endif
// Check that session cookies are cleared on a wrench menu quit. // Check that session cookies are cleared on a wrench menu quit.
IN_PROC_BROWSER_TEST_F(ContinueWhereILeftOffTest, IN_PROC_BROWSER_TEST_F(ContinueWhereILeftOffTest,
SessionCookiesCloseAllBrowsers) { MAYBE_SessionCookiesCloseAllBrowsers) {
// Set the startup preference to "continue where I left off" and visit a page // Set the startup preference to "continue where I left off" and visit a page
// which stores a session cookie. // which stores a session cookie.
StoreDataWithPage("session_cookies.html"); StoreDataWithPage("session_cookies.html");
......
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