summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-14 22:15:20 +0000
committerstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-14 22:15:20 +0000
commit4550d69d8252d89d00c8790be7dbb5e643bcf69b (patch)
tree3b28a7a15e207f83b3c6f7950c5fd092e70d5056
parentbad47a12043d88b660d8e99c812bf8bbd648a2da (diff)
downloadchromium_src-4550d69d8252d89d00c8790be7dbb5e643bcf69b.zip
chromium_src-4550d69d8252d89d00c8790be7dbb5e643bcf69b.tar.gz
chromium_src-4550d69d8252d89d00c8790be7dbb5e643bcf69b.tar.bz2
Flip a test from DISABLED_ to FAILS_ on the Mac, and add a bug annotation
BUG=45892 TEST=AutomationProxyVisibleTest.WindowGetViewBounds should run on Mac Review URL: http://codereview.chromium.org/2698001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49735 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/test/automation/automation_proxy_uitest.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc
index 15f67e1..cf037ed 100644
--- a/chrome/test/automation/automation_proxy_uitest.cc
+++ b/chrome/test/automation/automation_proxy_uitest.cc
@@ -41,12 +41,6 @@ using testing::CreateFunctor;
using testing::StrEq;
using testing::_;
-#if defined(OS_MACOSX)
-#define MAYBE_WindowGetViewBounds DISABLED_WindowGetViewBounds
-#else
-#define MAYBE_WindowGetViewBounds WindowGetViewBounds
-#endif
-
class AutomationProxyTest : public UITest {
protected:
AutomationProxyTest() {
@@ -82,7 +76,12 @@ TEST_F(AutomationProxyTest, GetBrowserWindow) {
}
};
-// TODO(estade): port automation provider for this test to mac.
+#if defined(OS_MACOSX)
+// Missing automation provider support: http://crbug.com/45892
+#define MAYBE_WindowGetViewBounds FAILS_WindowGetViewBounds
+#else
+#define MAYBE_WindowGetViewBounds WindowGetViewBounds
+#endif
TEST_F(AutomationProxyVisibleTest, MAYBE_WindowGetViewBounds) {
{
scoped_refptr<BrowserProxy> browser(automation()->GetBrowserWindow(0));