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

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

Issue 434072: Fix ThreadSanitizer suppressions... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years 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 # Chromium 2 # Chromium
3 3
4 { 4 {
5 bug_21468 5 bug_21468
6 ThreadSanitizer:Race 6 ThreadSanitizer:Race
7 ... 7 ...
8 fun:*net*DirectoryLister* 8 fun:*net*DirectoryLister*
9 } 9 }
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 ThreadSanitizer:Race 114 ThreadSanitizer:Race
115 fun:*talk_base*MessageQueue*Get* 115 fun:*talk_base*MessageQueue*Get*
116 } 116 }
117 117
118 { 118 {
119 bug_25913 (libjingle) (3) 119 bug_25913 (libjingle) (3)
120 ThreadSanitizer:Race 120 ThreadSanitizer:Race
121 fun:*talk_base*MessageQueue*Quit* 121 fun:*talk_base*MessageQueue*Quit*
122 } 122 }
123 123
124 {
125 bug_28765 (tcmalloc)
126 ThreadSanitizer:Race
127 ...
128 fun:*tcmalloc*ThreadCache*DeleteCache*
129 }
130
124 ############################ 131 ############################
125 # Data races in tests 132 # Data races in tests
126 133
127 # TODO(timurrrr): bug item 134 # TODO(timurrrr): bug item
128 { 135 {
129 Data race on bool in base/thread_unittest 136 Data race on bool in base/thread_unittest
130 ThreadSanitizer:Race 137 ThreadSanitizer:Race
131 ... 138 ...
132 fun:*ToggleValue*Run* 139 fun:*ToggleValue*Run*
133 } 140 }
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 # gethostbyname2_r is thread-safe, however ThreadSanitizer reports races inside it and 278 # gethostbyname2_r is thread-safe, however ThreadSanitizer reports races inside it and
272 # (sometimes) in __nss_* functions below it. 279 # (sometimes) in __nss_* functions below it.
273 # This may be related to 280 # This may be related to
274 # https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/59449 281 # https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/59449
275 { 282 {
276 Race reports below thread-safe gethostbyname2_r 283 Race reports below thread-safe gethostbyname2_r
277 ThreadSanitizer:Race 284 ThreadSanitizer:Race
278 ... 285 ...
279 fun:gethostbyname2_r* 286 fun:gethostbyname2_r*
280 } 287 }
281
282 ############################
283 # Races in TCMalloc (probably benign)
284 {
285 TCMalloc1
286 ThreadSanitizer:Race
287 ...
288 tcmalloc::ThreadCache::DeleteCache
289 }
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