| Index: chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| diff --git a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| index 3490fc2da1d63789f8b47dadb7ced0f8356ca73a..7ecfe16929d09323b687f7e64f30c163550e6b73 100644
|
| --- a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| +++ b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| @@ -430,7 +430,15 @@ IN_PROC_BROWSER_TEST_F(InstantExtendedTest,
|
| ASSERT_THAT(active_tab->GetURL().spec(), HasSubstr("q=puppies"));
|
| }
|
|
|
| -IN_PROC_BROWSER_TEST_F(InstantExtendedTest, OmniboxMarginSetForSearchURLs) {
|
| +#if defined(OS_LINUX) && defined(ADDRESS_SANITIZER)
|
| +// Flaky crashes at shutdown on Linux Asan; http://crbug.com/517886.
|
| +#define MAYBE_OmniboxMarginSetForSearchURLs \
|
| + DISABLED_OmniboxMarginSetForSearchURLs
|
| +#else
|
| +#define MAYBE_OmniboxMarginSetForSearchURLs OmniboxMarginSetForSearchURLs
|
| +#endif
|
| +IN_PROC_BROWSER_TEST_F(InstantExtendedTest,
|
| + MAYBE_OmniboxMarginSetForSearchURLs) {
|
| ASSERT_NO_FATAL_FAILURE(SetupInstant(browser()));
|
| FocusOmnibox();
|
|
|
|
|