summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation
diff options
context:
space:
mode:
authorjshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-11 20:00:28 +0000
committerjshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-11 20:00:28 +0000
commit25ebbce66982f7b6a3edeb641031e697aa40a689 (patch)
treed0acdcb4f20148781311e0450351150aad9c6c2c /chrome/test/automation
parent6365fd8aa5f25d90665efd6d9838100beab6c30f (diff)
downloadchromium_src-25ebbce66982f7b6a3edeb641031e697aa40a689.zip
chromium_src-25ebbce66982f7b6a3edeb641031e697aa40a689.tar.gz
chromium_src-25ebbce66982f7b6a3edeb641031e697aa40a689.tar.bz2
Mark DomAutomationTest.FindByText as flaky on Windows
It's 9% flaky on WIn XP (dbg). BUG=72745 TEST=NONE TBL=kkania Review URL: http://codereview.chromium.org/6500006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation')
-rw-r--r--chrome/test/automation/dom_automation_browsertest.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/test/automation/dom_automation_browsertest.cc b/chrome/test/automation/dom_automation_browsertest.cc
index 8a8f435..21f1771 100644
--- a/chrome/test/automation/dom_automation_browsertest.cc
+++ b/chrome/test/automation/dom_automation_browsertest.cc
@@ -121,7 +121,13 @@ IN_PROC_BROWSER_TEST_F(DOMAutomationTest, FindBySelectors) {
ASSERT_EQ(3, nested_count);
}
-IN_PROC_BROWSER_TEST_F(DOMAutomationTest, FindByText) {
+#if defined(OS_WIN)
+// http://crbug.com/72745
+#define MAYBE_FindByText FLAKY_FindByText
+#else
+#define MAYBE_FindByText FindByText
+#endif
+IN_PROC_BROWSER_TEST_F(DOMAutomationTest, MAYBE_FindByText) {
ASSERT_TRUE(test_server()->Start());
ui_test_utils::NavigateToURL(browser(),
GetTestURL("find_elements/test.html"));