Commit 102d3c2c authored by Matt Wolenetz's avatar Matt Wolenetz Committed by Commit Bot

browser_test FindInPageControllerTest.FindLongString is flaky

It's flaky on Win7 Tests (dbg)(1).
This change disables it in debug Windows builds.

BUG=825341,823003
TBR=pkasting@chromium.org
NO-TRY=True

Change-Id: Ibb04812ca20081ec55cbc1bdbef01464ddb062f3
Reviewed-on: https://chromium-review.googlesource.com/978835Reviewed-by: default avatarMatthew Wolenetz <wolenetz@chromium.org>
Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#545574}
parent 2be637ef
...@@ -423,8 +423,15 @@ IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, MAYBE_LargePage) { ...@@ -423,8 +423,15 @@ IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, MAYBE_LargePage) {
kFwd, kIgnoreCase, NULL)); kFwd, kIgnoreCase, NULL));
} }
// https://crbug.com/825341: Flaky timeout on Win7 Tests (dbg)(1)
#if defined(OS_WIN) && !defined(NDEBUG)
#define MAYBE_FindLongString DISABLED_FindLongString
#else
#define MAYBE_FindLongString FindLongString
#endif
// Find a very long string in a large page. // Find a very long string in a large page.
IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, FindLongString) { IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, MAYBE_FindLongString) {
WebContents* web_contents = WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents(); browser()->tab_strip_model()->GetActiveWebContents();
ui_test_utils::NavigateToURL(browser(), GetURL("largepage.html")); ui_test_utils::NavigateToURL(browser(), GetURL("largepage.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