Commit e7bb1d51 authored by Guido Urdaneta's avatar Guido Urdaneta Committed by Commit Bot

Disable flaky OmniBoxViewTests.

BUG=751543
TBR=pkasting@chromium.org

Change-Id: I9e33b2f01f0c71bb7b032d16ec4e16443fadf0b2
Reviewed-on: https://chromium-review.googlesource.com/597853Reviewed-by: default avatarGuido Urdaneta <guidou@chromium.org>
Commit-Queue: Guido Urdaneta <guidou@chromium.org>
Cr-Commit-Position: refs/heads/master@{#491359}
parent fb3919f6
...@@ -568,7 +568,13 @@ IN_PROC_BROWSER_TEST_F(OmniboxViewTest, DISABLED_BackspaceInKeywordMode) { ...@@ -568,7 +568,13 @@ IN_PROC_BROWSER_TEST_F(OmniboxViewTest, DISABLED_BackspaceInKeywordMode) {
UTF16ToUTF8(omnibox_view->GetText())); UTF16ToUTF8(omnibox_view->GetText()));
} }
IN_PROC_BROWSER_TEST_F(OmniboxViewTest, Escape) { // Flaky on Windows and Linux. http://crbug.com/751543
#if defined(OS_WIN) || defined(OS_LINUX)
#define MAYBE_Escape DISABLED_Escape
#else
#define MAYBE_Escape Escape
#endif
IN_PROC_BROWSER_TEST_F(OmniboxViewTest, MAYBE_Escape) {
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIHistoryURL)); ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIHistoryURL));
chrome::FocusLocationBar(browser()); chrome::FocusLocationBar(browser());
...@@ -989,7 +995,13 @@ IN_PROC_BROWSER_TEST_F(OmniboxViewTest, ...@@ -989,7 +995,13 @@ IN_PROC_BROWSER_TEST_F(OmniboxViewTest,
EXPECT_FALSE(omnibox_view->model()->is_keyword_selected()); EXPECT_FALSE(omnibox_view->model()->is_keyword_selected());
} }
IN_PROC_BROWSER_TEST_F(OmniboxViewTest, AcceptKeywordBySpace) { // Flaky on Windows and Linux. http://crbug.com/751543
#if defined(OS_WIN) || defined(OS_LINUX)
#define MAYBE_AcceptKeywordBySpace DISABLED_AcceptKeywordBySpace
#else
#define MAYBE_AcceptKeywordBySpace AcceptKeywordBySpace
#endif
IN_PROC_BROWSER_TEST_F(OmniboxViewTest, MAYBE_AcceptKeywordBySpace) {
OmniboxView* omnibox_view = NULL; OmniboxView* omnibox_view = NULL;
ASSERT_NO_FATAL_FAILURE(GetOmniboxView(&omnibox_view)); ASSERT_NO_FATAL_FAILURE(GetOmniboxView(&omnibox_view));
......
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