summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions
diff options
context:
space:
mode:
authorthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-23 20:54:19 +0000
committerthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-23 20:54:19 +0000
commitea33d1426d1eb857fa99ee21966b040cb6b419f7 (patch)
tree6959a39a334af74ffabd48dff934a2deb4a95953 /chrome/browser/extensions
parentce0825e1eff8630e5e0bec6d9204f3682982385d (diff)
downloadchromium_src-ea33d1426d1eb857fa99ee21966b040cb6b419f7.zip
chromium_src-ea33d1426d1eb857fa99ee21966b040cb6b419f7.tar.gz
chromium_src-ea33d1426d1eb857fa99ee21966b040cb6b419f7.tar.bz2
Disable a flaky test that seems to completely blow up with some frequency on the mac bots and seems to cause a ripple in hosing the bot in general.
BUG=42314,50060 TEST=Mac test bots stay greener Review URL: http://codereview.chromium.org/2834069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53512 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions')
-rw-r--r--chrome/browser/extensions/notifications_apitest.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/extensions/notifications_apitest.cc b/chrome/browser/extensions/notifications_apitest.cc
index eb19861..eb51c67 100644
--- a/chrome/browser/extensions/notifications_apitest.cc
+++ b/chrome/browser/extensions/notifications_apitest.cc
@@ -8,8 +8,14 @@
#include "chrome/browser/notifications/desktop_notification_service.h"
#include "chrome/browser/profile.h"
+// Fails and hoses bot, http://crbug.com/50060.
// Flaky, http://crbug.com/42314.
-IN_PROC_BROWSER_TEST_F(ExtensionApiTest, FLAKY_Notifications) {
+#if defined(OS_MACOSX)
+#define MAYBE_Notifications DISABLED_Notifications
+#else
+#define MAYBE_Notifications FLAKY_Notifications
+#endif
+IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_Notifications) {
#if defined(OS_LINUX) && defined(TOOLKIT_VIEWS)
// Notifications not supported on linux/views yet.
#else