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

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

Issue 9702066: Drop some unused Memcheck:Unaddressable suppressions, widen one TSan one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 months 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 | « tools/valgrind/memcheck/suppressions.txt ('k') | 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 # There are a few kinds of suppressions in this file. 1 # There are a few kinds of suppressions in this file.
2 # 1. third party stuff we have no control over 2 # 1. third party stuff we have no control over
3 # 3 #
4 # 2. intentional unit test errors, or stuff that is somehow a false positive 4 # 2. intentional unit test errors, or stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing 5 # in our own code, or stuff that is so trivial it's not worth fixing
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system (but a few aren't yet). 8 # These should all be in chromium's bug tracking system (but a few aren't yet).
9 # Periodically we should sweep this file and the bug tracker clean by 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 124 }
125 125
126 ############################ 126 ############################
127 # 1.3 Benign races in SQLLite 127 # 1.3 Benign races in SQLLite
128 # TODO(timurrr|oshima): following four suppressions could be obsolete. 128 # TODO(timurrr|oshima): following four suppressions could be obsolete.
129 { 129 {
130 Two writes, same value (SQLLite pthreadMutexAlloc) 130 Two writes, same value (SQLLite pthreadMutexAlloc)
131 ThreadSanitizer:Race 131 ThreadSanitizer:Race
132 ... 132 ...
133 fun:pthreadMutexAlloc 133 fun:pthreadMutexAlloc
134 fun:sqlite3MutexAlloc
135 }
136
137 {
138 Two writes, same value 2 (SQLLite pthreadMutexAlloc)
139 ThreadSanitizer:Race
140 fun:pthreadMutexAlloc
141 ...
142 fun:openDatabase
143 } 134 }
144 135
145 { 136 {
146 Two writes, same value (under sqlite3Malloc) 137 Two writes, same value (under sqlite3Malloc)
147 ThreadSanitizer:Race 138 ThreadSanitizer:Race
148 ... 139 ...
149 fun:sqlite3Malloc* 140 fun:sqlite3Malloc*
150 } 141 }
151 142
152 { 143 {
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 } 871 }
881 { 872 {
882 bug_118345 873 bug_118345
883 ThreadSanitizer:Race 874 ThreadSanitizer:Race
884 fun:base::Thread::message_loop 875 fun:base::Thread::message_loop
885 fun:content::BrowserThreadImpl::PostTaskHelper 876 fun:content::BrowserThreadImpl::PostTaskHelper
886 fun:content::BrowserThread::PostTask 877 fun:content::BrowserThread::PostTask
887 fun:PluginLoaderPosix::GetPluginsToLoad 878 fun:PluginLoaderPosix::GetPluginsToLoad
888 fun:base::internal::RunnableAdapter::Run 879 fun:base::internal::RunnableAdapter::Run
889 } 880 }
OLDNEW
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698