Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: tools/valgrind/drmemory/suppressions.txt

Issue 8588061: suppress unit_tests deliberate null deref (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ############################ 1 ############################
2 # Known reports on the third party we have no control over. 2 # Known reports on the third party we have no control over.
3 UNINITIALIZED READ 3 UNINITIALIZED READ
4 ... 4 ...
5 *!deflate_* 5 *!deflate_*
6 *!MOZ_Z_deflate 6 *!MOZ_Z_deflate
7 7
8 # http://code.google.com/p/drmemory/issues/detail?id=406 8 # http://code.google.com/p/drmemory/issues/detail?id=406
9 # TODO(timurrrr): check if these frames change when NT_SYMBOLS are present. 9 # TODO(timurrrr): check if these frames change when NT_SYMBOLS are present.
10 LEAK 10 LEAK
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 # function is small, little risk for false negative in rest of it 707 # function is small, little risk for false negative in rest of it
708 # TODO(bruening): switch to annotation once have support for that 708 # TODO(bruening): switch to annotation once have support for that
709 chrome.dll!HandleRendererErrorTestParameters 709 chrome.dll!HandleRendererErrorTestParameters
710 710
711 UNADDRESSABLE ACCESS 711 UNADDRESSABLE ACCESS
712 name=NPAPITesterBase.NoHangIfInitCrashes deliberate crash 712 name=NPAPITesterBase.NoHangIfInitCrashes deliberate crash
713 # function is small, little risk for false negative in rest of it 713 # function is small, little risk for false negative in rest of it
714 # TODO(bruening): switch to annotation once have support for that 714 # TODO(bruening): switch to annotation once have support for that
715 npapi_test_plugin.dll!NPAPIClient::PluginClient::Initialize 715 npapi_test_plugin.dll!NPAPIClient::PluginClient::Initialize
716 716
717 # This test intentionally leaks an object and checks that it's never deleted
718 LEAK
Timur Iskhodzhanov 2011/11/18 20:05:40 can you add name= lines to these suppressions?
Derek Bruening 2011/12/07 14:53:59 meant to do this next time I changed this file but
Timur Iskhodzhanov 2011/12/07 15:01:29 I already did that. On 2011/12/07 14:53:59, Derek
719 ...
720 *!BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test::TestBody
721
722 # This test has a death test at the end that derefences a NULL pointer.
723 UNADDRESSABLE ACCESS
724 ...
725 unit_tests.exe!BrowserAboutHandlerTest_WillHandleBrowserAboutURL_Test::TestBody
Timur Iskhodzhanov 2011/12/07 13:32:16 Do you remember what was the stack? This one match
Derek Bruening 2011/12/07 14:53:59 This diff came straight from Reid and I just poste
Reid Kleckner 2011/12/07 15:04:23 Right: http://codereview.chromium.org/8585046/
726
717 ############################ 727 ############################
718 # Benign issues in Chromium 728 # Benign issues in Chromium
719 729
720 # We deliberately leak different kinds of Histograms to avoid data races. 730 # We deliberately leak different kinds of Histograms to avoid data races.
721 LEAK 731 LEAK
722 ... 732 ...
723 *!operator new* 733 *!operator new*
724 ... 734 ...
725 *!*::*Histogram::FactoryGet 735 *!*::*Histogram::FactoryGet
726 736
(...skipping 24 matching lines...) Expand all
751 *!notifier::Login::StartConnection 761 *!notifier::Login::StartConnection
752 *!sync_notifier::InvalidationNotifier::UpdateCredentials 762 *!sync_notifier::InvalidationNotifier::UpdateCredentials
753 *!sync_notifier::NonBlockingInvalidationNotifier::Core::UpdateCredentials 763 *!sync_notifier::NonBlockingInvalidationNotifier::Core::UpdateCredentials
754 764
755 LEAK 765 LEAK
756 ... 766 ...
757 *!TestURLRequestContext::TestURLRequestContext 767 *!TestURLRequestContext::TestURLRequestContext
758 *!TestURLRequestContextGetter::GetURLRequestContext 768 *!TestURLRequestContextGetter::GetURLRequestContext
759 *!URLFetcher::Core::StartURLRequest 769 *!URLFetcher::Core::StartURLRequest
760 770
761 # This test intentionally leaks an object and checks that it's never deleted
762 LEAK
763 ...
764 *!BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test::TestBody
765
766 WARNING 771 WARNING
767 # http://code.google.com/p/chromium/issues/detail?id=72463 772 # http://code.google.com/p/chromium/issues/detail?id=72463
768 name=Ci#72463: prefetches in generated MemCopy 773 name=Ci#72463: prefetches in generated MemCopy
769 instruction=prefetch* 774 instruction=prefetch*
770 <not in a module> 775 <not in a module>
771 chrome.dll!v8::internal::CopyChars* 776 chrome.dll!v8::internal::CopyChars*
772 777
773 UNADDRESSABLE ACCESS 778 UNADDRESSABLE ACCESS
774 # http://code.google.com/p/drmemory/issues/detail?id=582 779 # http://code.google.com/p/drmemory/issues/detail?id=582
775 name=bizarre cl-generated read-beyond-TOS 780 name=bizarre cl-generated read-beyond-TOS
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 *!operator new 933 *!operator new
929 *!views::NativeWidgetWin::OnCreate 934 *!views::NativeWidgetWin::OnCreate
930 935
931 # http://crbug.com/96010 936 # http://crbug.com/96010
932 UNADDRESSABLE ACCESS 937 UNADDRESSABLE ACCESS
933 ... 938 ...
934 *!NotificationService::Notify 939 *!NotificationService::Notify
935 940
936 # Empty line at EOF - workaround for 941 # Empty line at EOF - workaround for
937 # http://code.google.com/p/drmemory/issues/detail?id=41 942 # http://code.google.com/p/drmemory/issues/detail?id=41
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698