summaryrefslogtreecommitdiffstats
path: root/chrome/browser/web_applications
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-03 22:12:30 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-03 22:12:30 +0000
commita9e33e27ecef74919e5c831a7e67b6e7b73e63a2 (patch)
treeaecc9b4cdc8d97ce1b47f1ab80ce4f4cd37baf17 /chrome/browser/web_applications
parent61ae41538a6dc5293fb53bdf07c5f4c083b48ac6 (diff)
downloadchromium_src-a9e33e27ecef74919e5c831a7e67b6e7b73e63a2.zip
chromium_src-a9e33e27ecef74919e5c831a7e67b6e7b73e63a2.tar.gz
chromium_src-a9e33e27ecef74919e5c831a7e67b6e7b73e63a2.tar.bz2
Disable a test on Mac. This code is never run on Mac anyway.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications')
-rw-r--r--chrome/browser/web_applications/web_app_unittest.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/web_applications/web_app_unittest.cc b/chrome/browser/web_applications/web_app_unittest.cc
index f189900..9626c67 100644
--- a/chrome/browser/web_applications/web_app_unittest.cc
+++ b/chrome/browser/web_applications/web_app_unittest.cc
@@ -27,7 +27,12 @@ class WebApplicationTest : public TabContentsTestHarness {
content::TestBrowserThread ui_thread_;
};
-TEST_F(WebApplicationTest, GetShortcutInfoForTab) {
+#if defined(OS_MACOSX)
+#define MAYBE_GetShortcutInfoForTab DISABLED_GetShortcutInfoForTab
+#else
+#define MAYBE_GetShortcutInfoForTab GetShortcutInfoForTab
+#endif
+TEST_F(WebApplicationTest, MAYBE_GetShortcutInfoForTab) {
const string16 title = ASCIIToUTF16("TEST_TITLE");
const string16 description = ASCIIToUTF16("TEST_DESCRIPTION");
const GURL url("http://www.foo.com/bar");