diff options
author | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-13 12:23:18 +0000 |
---|---|---|
committer | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-13 12:23:18 +0000 |
commit | 3212f020487443bee73faeab3222c7908745e373 (patch) | |
tree | 0e44f17bd9cff6bea9bfe7f5a3b62a7a17133ed8 /chrome/browser/extensions/app_notification_manager_unittest.cc | |
parent | 2459e6c9ce59040395c3084cd94fb7d86b333015 (diff) | |
download | chromium_src-3212f020487443bee73faeab3222c7908745e373.zip chromium_src-3212f020487443bee73faeab3222c7908745e373.tar.gz chromium_src-3212f020487443bee73faeab3222c7908745e373.tar.bz2 |
Disable AppNotificationManagerTest.ExtensionUninstall under AddressSanitizer
BUG=100156
TBR=timurrrr
Review URL: http://codereview.chromium.org/8256013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105293 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/app_notification_manager_unittest.cc')
-rw-r--r-- | chrome/browser/extensions/app_notification_manager_unittest.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/extensions/app_notification_manager_unittest.cc b/chrome/browser/extensions/app_notification_manager_unittest.cc index 55a567d..37aa6c6 100644 --- a/chrome/browser/extensions/app_notification_manager_unittest.cc +++ b/chrome/browser/extensions/app_notification_manager_unittest.cc @@ -89,7 +89,13 @@ TEST_F(AppNotificationManagerTest, Simple) { // Test that AppNotificationManager correctly listens to EXTENSION_UNINSTALLED // notifications and removes associated data when that happens. -TEST_F(AppNotificationManagerTest, ExtensionUninstall) { +#ifdef ADDRESS_SANITIZER +// This test crashes under ASan, see http://crbug.com/100156 +#define MAYBE_ExtensionUninstall DISABLED_ExtensionUninstall +#else +#define MAYBE_ExtensionUninstall ExtensionUninstall +#endif +TEST_F(AppNotificationManagerTest, MAYBE_ExtensionUninstall) { // Add some items from two test extension ids. std::string id1 = extension_test_util::MakeId("id1"); std::string id2 = extension_test_util::MakeId("id2"); |