Commit 9914cd8e authored by nsylvain@chromium.org's avatar nsylvain@chromium.org

Mark AutomatedUITestBase.CloseBrowserWindow as flaky. It fails

often both on Linux and Windows.

BUG:14774

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30336 0039d316-1c4b-4281-b951-d872f2087c98
parent a9527c20
...@@ -27,10 +27,8 @@ ...@@ -27,10 +27,8 @@
// http://code.google.com/p/chromium/issues/detail?id=14774 // http://code.google.com/p/chromium/issues/detail?id=14774
#if defined(OS_WIN) && !defined(NDEBUG) #if defined(OS_WIN) && !defined(NDEBUG)
#define MAYBE_CloseTab DISABLED_CloseTab #define MAYBE_CloseTab DISABLED_CloseTab
#define MAYBE_CloseBrowserWindow DISABLED_CloseBrowserWindow
#else #else
#define MAYBE_CloseTab CloseTab #define MAYBE_CloseTab CloseTab
#define MAYBE_CloseBrowserWindow CloseBrowserWindow
#endif #endif
// Automation pieces are not implemented for these on platforms other than // Automation pieces are not implemented for these on platforms other than
...@@ -203,7 +201,8 @@ TEST_F(AutomatedUITestBase, OpenBrowserWindow) { ...@@ -203,7 +201,8 @@ TEST_F(AutomatedUITestBase, OpenBrowserWindow) {
ASSERT_EQ(1, num_browser_windows); ASSERT_EQ(1, num_browser_windows);
} }
TEST_F(AutomatedUITestBase, MAYBE_CloseBrowserWindow) { // http://code.google.com/p/chromium/issues/detail?id=14774
TEST_F(AutomatedUITestBase, FLAKY_CloseBrowserWindow) {
int tab_count; int tab_count;
NewTab(); NewTab();
active_browser()->GetTabCount(&tab_count); active_browser()->GetTabCount(&tab_count);
......
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