summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-31 02:45:43 +0000
committernsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-31 02:45:43 +0000
commit27924346be5e74e67a15c1b6e29478c20d6735e7 (patch)
treec259176f2c62a97a0b0e5d20f24ffc9aafbf2f60
parent62ed19af190eade0137c8af80e30f71088a6ba0e (diff)
downloadchromium_src-27924346be5e74e67a15c1b6e29478c20d6735e7.zip
chromium_src-27924346be5e74e67a15c1b6e29478c20d6735e7.tar.gz
chromium_src-27924346be5e74e67a15c1b6e29478c20d6735e7.tar.bz2
Remove the Flaky flag on FindByXPath as this might not be failing anymore.
BUG=61636 Review URL: http://codereview.chromium.org/6386018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73125 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/test/automation/dom_automation_browsertest.cc13
1 files changed, 3 insertions, 10 deletions
diff --git a/chrome/test/automation/dom_automation_browsertest.cc b/chrome/test/automation/dom_automation_browsertest.cc
index 33549da..eefcff1 100644
--- a/chrome/test/automation/dom_automation_browsertest.cc
+++ b/chrome/test/automation/dom_automation_browsertest.cc
@@ -23,7 +23,7 @@ class IncreaseLoadingTimeout {
// Those tests are at the beginning of the browser_tests suite. On the
// XP buildbot the cold start is often slow enough to make it go over the
// default timeout of 20 seconds. Bump those initial tests to 30 seconds.
- g_test_timeout_overrides["DOMAutomationTest.FLAKY_FindByXPath"] = kTimeout;
+ g_test_timeout_overrides["DOMAutomationTest.FindByXPath"] = kTimeout;
g_test_timeout_overrides["DOMAutomationTest.FindBySelectors"] = kTimeout;
g_test_timeout_overrides["DOMAutomationTest.FindByText"] = kTimeout;
}
@@ -31,7 +31,7 @@ class IncreaseLoadingTimeout {
IncreaseLoadingTimeout g_increase_loading_timeout;
-// Tests the DOMAutomation framework for manipulating DOMElements withina
+// Tests the DOMAutomation framework for manipulating DOMElements within
// browser tests.
class DOMAutomationTest : public InProcessBrowserTest {
public:
@@ -49,14 +49,7 @@ class DOMAutomationTest : public InProcessBrowserTest {
typedef DOMElementProxy::By By;
-#if defined(OS_WIN)
-// See http://crbug.com/61636
-#define MAYBE_FindByXPath FLAKY_FindByXPath
-#else
-#define MAYBE_FindByXPath FindByXPath
-#endif
-
-IN_PROC_BROWSER_TEST_F(DOMAutomationTest, MAYBE_FindByXPath) {
+IN_PROC_BROWSER_TEST_F(DOMAutomationTest, FindByXPath) {
ASSERT_TRUE(test_server()->Start());
ui_test_utils::NavigateToURL(browser(),
GetTestURL("find_elements/test.html"));