Disable AutomationProxyVisibleTest.AutocompleteMatchesTest.

It is flaky, and the underlying automation seems to be horribly broken.

I'm going to be fixing that in small steps. Disabling the test is the first one.

TEST=none
http://crbug.com/19876

Review URL: http://codereview.chromium.org/193064

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25801 0039d316-1c4b-4281-b951-d872f2087c98
parent 6889a113
...@@ -981,9 +981,8 @@ TEST_F(AutomationProxyTest, AutocompleteParallelProxy) { ...@@ -981,9 +981,8 @@ TEST_F(AutomationProxyTest, AutocompleteParallelProxy) {
#endif // defined(OS_WIN) || defined(OS_LINUX) #endif // defined(OS_WIN) || defined(OS_LINUX)
// Not run on linux because of flakiness. http://crbug.com/19876 // So flaky, http://crbug.com/19876. Consult phajdan.jr before re-enabling.
#if defined(OS_WIN) TEST_F(AutomationProxyVisibleTest, DISABLED_AutocompleteMatchesTest) {
TEST_F(AutomationProxyVisibleTest, AutocompleteMatchesTest) {
scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0)); scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));
ASSERT_TRUE(browser.get()); ASSERT_TRUE(browser.get());
scoped_refptr<AutocompleteEditProxy> edit( scoped_refptr<AutocompleteEditProxy> edit(
...@@ -1000,7 +999,6 @@ TEST_F(AutomationProxyVisibleTest, AutocompleteMatchesTest) { ...@@ -1000,7 +999,6 @@ TEST_F(AutomationProxyVisibleTest, AutocompleteMatchesTest) {
EXPECT_TRUE(edit->GetAutocompleteMatches(&matches)); EXPECT_TRUE(edit->GetAutocompleteMatches(&matches));
EXPECT_FALSE(matches.empty()); EXPECT_FALSE(matches.empty());
} }
#endif // defined(OS_WIN)
// Disabled because flaky see bug #5314. // Disabled because flaky see bug #5314.
TEST_F(AutomationProxyTest, DISABLED_AppModalDialogTest) { TEST_F(AutomationProxyTest, DISABLED_AppModalDialogTest) {
......
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