Commit 1f5eca31 authored by kjellander's avatar kjellander Committed by Commit bot

Disable BrowserTest.ShouldShowLocationBarForBookmarkApp on Windows

The test is flaky.

BUG=468753
TBR=benwells@chromium.org

Review URL: https://codereview.chromium.org/1018343002

Cr-Commit-Position: refs/heads/master@{#321362}
parent 47f88c50
......@@ -1389,7 +1389,15 @@ IN_PROC_BROWSER_TEST_F(BrowserTest, ShouldShowLocationBar) {
}
// Check that the location bar is shown correctly for bookmark apps.
IN_PROC_BROWSER_TEST_F(BrowserTest, ShouldShowLocationBarForBookmarkApp) {
// Flaky on Windows: http://crbug.com/468753.
#if defined(OS_WIN)
#define MAYBE_ShouldShowLocationBarForBookmarkApp \
DISABLED_ShouldShowLocationBarForBookmarkApp
#else
#define MAYBE_ShouldShowLocationBarForBookmarkApp \
ShouldShowLocationBarForBookmarkApp
#endif
IN_PROC_BROWSER_TEST_F(BrowserTest, MAYBE_ShouldShowLocationBarForBookmarkApp) {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableNewBookmarkApps);
ASSERT_TRUE(test_server()->Start());
......
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