diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-22 17:58:06 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-22 17:58:06 +0000 |
commit | e4359be2f8068dce74234add3fb5268bbc90670f (patch) | |
tree | 8e83c2e1f7adcbe312fd1e9c0e678fb2e0fa1908 /tools | |
parent | e5ee0f700f5059047fbb0290c117daae25c88fb7 (diff) | |
download | chromium_src-e4359be2f8068dce74234add3fb5268bbc90670f.zip chromium_src-e4359be2f8068dce74234add3fb5268bbc90670f.tar.gz chromium_src-e4359be2f8068dce74234add3fb5268bbc90670f.tar.bz2 |
Suppress some DrMemory reports (one of them is real, the other is possible)
Also, update the DrM i#304 suppression and remove the suppression for probably-fixed crbug/57910
BUG=73740,73744,57910
TBR=bruening
TEST=DrM bot goes greener
Review URL: http://codereview.chromium.org/6549017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75604 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/drmemory/suppressions.txt | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/tools/valgrind/drmemory/suppressions.txt b/tools/valgrind/drmemory/suppressions.txt index c5ac944..4418fdc 100644 --- a/tools/valgrind/drmemory/suppressions.txt +++ b/tools/valgrind/drmemory/suppressions.txt @@ -2,7 +2,7 @@ # Known reports on the third party we have no control over. UNINITIALIZED READ ... -*!deflate_slow +*!deflate_* *!MOZ_Z_deflate ############################ @@ -284,9 +284,11 @@ LEAK # http://code.google.com/p/drmemory/issues/detail?id=304 UNINITIALIZED READ ... -*!_malloc_dbg +*!_nh_malloc_dbg_impl + +UNADDRESSABLE ACCESS ... -*!_*putenv_s +*!_nh_malloc_dbg_impl # http://code.google.com/p/drmemory/issues/detail?id=305 LEAK @@ -458,13 +460,6 @@ UNINITIALIZED READ ... *!vp8_* -# http://crbug.com/57910 -POSSIBLE LEAK -... -*!*inflateInit* -*!remoting::DecompressorZlib::InitStream -*!remoting::DecompressorZlib::Reset - # http://crbug.com/70388 LEAK *!operator new @@ -479,5 +474,20 @@ WINSPOOL.DRV!OpenPrinterW *!printing::PrintingContextWin::AskUserForSettings *!PrintingContextTest_PrintAll_Test::TestBody +# http://crbug.com/73740 +UNINITIALIZED READ +ntdll.dll!wcslen +KERNEL32.dll!lstrlenW +*!base::debug::DebugOnStart::FindArgument +*!base::debug::DebugOnStart::Init + +# http://crbug.com/73744 +LEAK +*!operator new +*!remoting::TraceContext::Get +*!remoting::TraceContext::tracer +*!remoting::ScreenRecorder::DoCapture +*!remoting::ScreenRecorder::DoStart + # Empty line at EOF - workaround for # http://code.google.com/p/drmemory/issues/detail?id=41 |