diff options
-rw-r--r-- | chrome/test/automation/automation_proxy_uitest.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc index 7adbf8a..be1aa9d 100644 --- a/chrome/test/automation/automation_proxy_uitest.cc +++ b/chrome/test/automation/automation_proxy_uitest.cc @@ -410,7 +410,13 @@ TEST_F(AutomationProxyTest2, GetActiveTabIndex) { ASSERT_EQ(1, active_tab_index); } -TEST_F(AutomationProxyTest2, GetTabTitle) { +// http://crbug.com/98071 +#if defined(OS_MACOSX) +#define MAYBE_GetTabTitle FLAKY_GetTabTitle +#else +#define MAYBE_GetTabTitle GetTabTitle +#endif +TEST_F(AutomationProxyTest2, MAYBE_GetTabTitle) { scoped_refptr<BrowserProxy> window(automation()->GetBrowserWindow(0)); ASSERT_TRUE(window.get()); scoped_refptr<TabProxy> tab(window->GetTab(0)); |