diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-31 23:54:00 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-31 23:54:00 +0000 |
commit | cf8d7a3068a3fec5f7616ab586956a066e611422 (patch) | |
tree | 1c41abd7f0ce68277341b0071b12efe29f83d268 /tools | |
parent | be4ab9e15344e37a3285eb981767806e9e5f8dcd (diff) | |
download | chromium_src-cf8d7a3068a3fec5f7616ab586956a066e611422.zip chromium_src-cf8d7a3068a3fec5f7616ab586956a066e611422.tar.gz chromium_src-cf8d7a3068a3fec5f7616ab586956a066e611422.tar.bz2 |
Valgrind: Move test_instance_deprecated to intentional suppressions
BUG=145710
Review URL: https://chromiumcodereview.appspot.com/10909028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index 6e926a9..68237dd 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -1074,6 +1074,21 @@ ... fun:_ZN4base*StatisticsRecorderTest_*_Test8TestBodyEv } +{ + # This test simulates a ppapi plugin that fails to decrement a reference + # count. In that case, the ppapi runtime will clean up its internal data + # structures, but intentionally does not delete the plugin object's + # desctructor, because we don't want them to have the opportunity to do + # anything at that part of shutdown. + bug_145710 (Intentional) + Memcheck:Leak + fun:_Znw* + fun:_ZN12TestInstance27TestLeakedObjectDestructorsEv + fun:_ZN12TestInstance8RunTestsERKSs + fun:_ZN15TestingInstance12ExecuteTestsEi + fun:_ZN2pp25CompletionCallbackFactoryI15TestingInstanceNS_22ThreadSafeThreadTraitsEE11Dispatcher0IMS1_FviEEclEPS1_i + fun:_ZN2pp25CompletionCallbackFactoryI15TestingInstanceNS_22ThreadSafeThreadTraitsEE12CallbackDataINS3_11Dispatcher0IMS1_FviEEEE5ThunkEPvi +} #----------------------------------------------------------------------- # 3. Suppressions for real chromium bugs that are not yet fixed. @@ -5906,16 +5921,6 @@ fun:_ZN10extensions13ExtensionHost9OnRequestERK31ExtensionHostMsg_Request_Params } { - bug_145710 - Memcheck:Leak - fun:_Znw* - fun:_ZN12TestInstance27TestLeakedObjectDestructorsEv - fun:_ZN12TestInstance8RunTestsERKSs - fun:_ZN15TestingInstance12ExecuteTestsEi - fun:_ZN2pp25CompletionCallbackFactoryI15TestingInstanceNS_22ThreadSafeThreadTraitsEE11Dispatcher0IMS1_FviEEclEPS1_i - fun:_ZN2pp25CompletionCallbackFactoryI15TestingInstanceNS_22ThreadSafeThreadTraitsEE12CallbackDataINS3_11Dispatcher0IMS1_FviEEEE5ThunkEPvi -} -{ bug_145723 Memcheck:Leak fun:_Znw* |