diff options
author | dank@chromium.org <dank@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-01 01:05:14 +0000 |
---|---|---|
committer | dank@chromium.org <dank@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-01 01:05:14 +0000 |
commit | 60c240ac311e2029d985f445e5f4e25374b61525 (patch) | |
tree | b2545fd6ee6256bd6d74acc14084fe955b8e3adf /tools | |
parent | f1940b946ea9f8589ecd95f82879abad152b73e1 (diff) | |
download | chromium_src-60c240ac311e2029d985f445e5f4e25374b61525.zip chromium_src-60c240ac311e2029d985f445e5f4e25374b61525.tar.gz chromium_src-60c240ac311e2029d985f445e5f4e25374b61525.tar.bz2 |
Suppress four really common valgrind warnings in mac ui tests.
BUG=16661,18215,18218,18219
TEST=watch mac valgrind ui tests go greener
Review URL: http://codereview.chromium.org/159757
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/memcheck/suppressions_mac.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/tools/valgrind/memcheck/suppressions_mac.txt b/tools/valgrind/memcheck/suppressions_mac.txt index 75db21a..4c0046d 100644 --- a/tools/valgrind/memcheck/suppressions_mac.txt +++ b/tools/valgrind/memcheck/suppressions_mac.txt @@ -180,6 +180,13 @@ fun:dlopen fun:_CFBundleDlfcnCheckLoaded } +{ + bug_18215 + Memcheck:Cond + fun:_DPSNextEvent + fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + fun:-[NSApplication run] +} # 2. Intentional unit test errors, stuff that is somehow a false positive # in our own code, or stuff that is so trivial it's not worth fixing. @@ -328,6 +335,18 @@ fun:thread_start } { + bug_16661 + Memcheck:Leak + fun:_Znwm + fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE + fun:_ZN16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE + fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv + fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE + fun:_ZN3IPC7Channel4SendEPNS_7MessageE + fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE + fun:_ZN3IPC8SendTask3RunEv +} +{ bug_17297 Memcheck:Leak fun:malloc @@ -351,3 +370,28 @@ fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE fun:_ZN11ChildThread4InitEv } +{ + bug_18218 + Memcheck:Leak + fun:malloc + fun:__addHandler2 + fun:__NSFinalizeThreadData + fun:_pthread_tsd_cleanup + fun:_pthread_exit + fun:thread_start +} +{ + bug_18219 + Memcheck:Leak + fun:malloc_zone_malloc + fun:_CFRuntimeCreateInstance + fun:CGTypeCreateInstanceWithAllocator + fun:CGTypeCreateInstance + fun:CGImageCreate + fun:_NSCreateImageRef2 + fun:-[CIImage(NSAppKitAdditions) initWithBitmapImageRep:] + fun:-[ThrobberFilmstripDelegate initWithImage:] + fun:+[ThrobberView filmstripThrobberViewWithFrame:image:] + fun:-[TabStripController tabChangedWithContents:atIndex:loadingOnly:] + fun:_ZN27TabStripModelObserverBridge12TabChangedAtEP11TabContentsib +} |