diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 22:01:45 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 22:01:45 +0000 |
commit | dab85b4a8d1e5834f28fcbefa5094c381c8fd548 (patch) | |
tree | c642f0636e2024603cab88650e8ebd08bc223025 /chrome/test/automation | |
parent | 6f2d8b3c4bf0e2bedf4affb592f492000e45021a (diff) | |
download | chromium_src-dab85b4a8d1e5834f28fcbefa5094c381c8fd548.zip chromium_src-dab85b4a8d1e5834f28fcbefa5094c381c8fd548.tar.gz chromium_src-dab85b4a8d1e5834f28fcbefa5094c381c8fd548.tar.bz2 |
Disable flaky tests that are hanging.
DOMAutomationTest.FindBySelectors
DOMAutomationTest.FindByText
DOMAutomationTest.FindByXPath
BUG=61636
Review URL: http://codereview.chromium.org/6312019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73027 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation')
-rw-r--r-- | chrome/test/automation/dom_automation_browsertest.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/test/automation/dom_automation_browsertest.cc b/chrome/test/automation/dom_automation_browsertest.cc index 1c694d4..0980bbc 100644 --- a/chrome/test/automation/dom_automation_browsertest.cc +++ b/chrome/test/automation/dom_automation_browsertest.cc @@ -33,9 +33,13 @@ typedef DOMElementProxy::By By; #if defined(OS_WIN) // See http://crbug.com/61636 -#define MAYBE_FindByXPath FLAKY_FindByXPath +#define MAYBE_FindByXPath DISABLED_FindByXPath +#define MAYBE_FindBySelectors DISABLED_FindByXPath +#define MAYBE_FindByText DISABLED_FindByText #else #define MAYBE_FindByXPath FindByXPath +#define MAYBE_FindBySelectors FindBySelectors +#define MAYBE_FindByText FindByText #endif IN_PROC_BROWSER_TEST_F(DOMAutomationTest, MAYBE_FindByXPath) { |