Commit e70afafb authored by calamity's avatar calamity Committed by Commit Bot

Disable FindInPageControllerTest.FindLongString on ASAN and Mac Debug.

Bug: 1096911
TBR=ellyjones@chromium.org

Change-Id: Ib791c12d6fb737766bf614aca41dbc131054ff97
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2253482Reviewed-by: default avatarcalamity <calamity@chromium.org>
Commit-Queue: calamity <calamity@chromium.org>
Cr-Commit-Position: refs/heads/master@{#780172}
parent 70fd6c53
......@@ -436,6 +436,12 @@ IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, MAYBE_LargePage) {
}
// Find a very long string in a large page.
// TODO(crbug.com/1096911): Test is flaky on Mac debug builds and Linux asan.
#if (defined(OS_MACOSX) && !defined(NDEBUG)) || defined(ADDRESS_SANITIZER)
#define MAYBE_FindLongString DISABLED_FindLongString
#else
#define MAYBE_FindLongString FindLongString
#endif
IN_PROC_BROWSER_TEST_F(FindInPageControllerTest, FindLongString) {
WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
......
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