diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 16:52:52 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-08 16:52:52 +0000 |
commit | 5b7d7c172487e4506eacf81fbd716c50e9f2f11e (patch) | |
tree | 130ee9c56dd9e895336f8269cd8a76de0cfe72ee /tools | |
parent | 21fe774256c1c87512a44458efdcf13b5a34abd9 (diff) | |
download | chromium_src-5b7d7c172487e4506eacf81fbd716c50e9f2f11e.zip chromium_src-5b7d7c172487e4506eacf81fbd716c50e9f2f11e.tar.gz chromium_src-5b7d7c172487e4506eacf81fbd716c50e9f2f11e.tar.bz2 |
Add a suppression for a leak the Mac UI tests get when plugins are first loaded.
BUG=none
TEST=Fewer leaks on the Mac valgrind UI test bots
Review URL: http://codereview.chromium.org/155190
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20156 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/suppressions_mac.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/valgrind/suppressions_mac.txt b/tools/valgrind/suppressions_mac.txt index ec61717..1def9c3 100644 --- a/tools/valgrind/suppressions_mac.txt +++ b/tools/valgrind/suppressions_mac.txt @@ -292,3 +292,17 @@ fun:CGContextDrawImage fun:_ZN3gfx17CGImageToSkBitmapEP7CGImage } + +{ + # Tiny one-time leak, widely seen by valgind users; everyone suppresses this. + # See related discussion at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39366 + plugin_bundle_global_leak + Memcheck:Leak + fun:malloc + fun:__cxa_get_globals + fun:__cxa_allocate_exception + fun:_ZN4dyld4loadEPKcRKNS_11LoadContextE + fun:dlopen + fun:dlopen + fun:_CFBundleDlfcnCheckLoaded +} |