Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(628)

Unified Diff: chrome/browser/autocomplete/autocomplete_browsertest.cc

Issue 8572015: Mark AutocompleteBrowserTest.FocusSearch flaky on Windows and Linux. (reland) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use OS_WIN, not OS_WINDOWS. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/autocomplete_browsertest.cc
diff --git a/chrome/browser/autocomplete/autocomplete_browsertest.cc b/chrome/browser/autocomplete/autocomplete_browsertest.cc
index ae1cce8355bcb6283e765329acfbeb73ef73647c..56a0cafff54961ef9f05dd310f64ad59f437580a 100644
--- a/chrome/browser/autocomplete/autocomplete_browsertest.cc
+++ b/chrome/browser/autocomplete/autocomplete_browsertest.cc
@@ -170,7 +170,13 @@ IN_PROC_BROWSER_TEST_F(AutocompleteBrowserTest, TabAwayRevertSelect) {
EXPECT_TRUE(location_bar->location_entry()->IsSelectAll());
}
-IN_PROC_BROWSER_TEST_F(AutocompleteBrowserTest, FocusSearch) {
+#if defined(OS_WIN) || defined(OS_LINUX)
+// http://crbug.com/104307
+#define MAYBE_FocusSearch FLAKY_FocusSearch
+#else
+#define MAYBE_FocusSearch FocusSearch
+#endif
+IN_PROC_BROWSER_TEST_F(AutocompleteBrowserTest, MAYBE_FocusSearch) {
LocationBar* location_bar = GetLocationBar();
// Focus search when omnibox is blank
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698