From 4550d69d8252d89d00c8790be7dbb5e643bcf69b Mon Sep 17 00:00:00 2001 From: "stuartmorgan@chromium.org" Date: Mon, 14 Jun 2010 22:15:20 +0000 Subject: 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 --- chrome/test/automation/automation_proxy_uitest.cc | 13 ++++++------- 1 file 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 browser(automation()->GetBrowserWindow(0)); -- cgit v1.1