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

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

Issue 269073: Added suppressions for two real races and one benign... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 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 | « 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_15147 5 bug_15147
6 ThreadSanitizer:Race 6 ThreadSanitizer:Race
7 ... 7 ...
8 fun:*URLRequestJobTracker* 8 fun:*URLRequestJobTracker*
9 } 9 }
10 10
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ThreadSanitizer:Race 66 ThreadSanitizer:Race
67 fun:*RefCounted*disk_cache*File* 67 fun:*RefCounted*disk_cache*File*
68 } 68 }
69 69
70 { 70 {
71 bug_24419 71 bug_24419
72 ThreadSanitizer:Race 72 ThreadSanitizer:Race
73 fun:*BrowserProcessImpl*nspector*iles* 73 fun:*BrowserProcessImpl*nspector*iles*
74 } 74 }
75 75
76 {
77 bug_24715
78 ThreadSanitizer:Race
79 fun:*base*internal*WeakReference*
80 ...
81 fun:*AppCacheUpdateJobTest*
82 }
83
84 {
85 bug_24724
86 ThreadSanitizer:Race
87 fun:*WTF*RefCountedBase*ref*
88 ...
89 fun:*WebCore*WorkerRunLoop*Task*
90 }
91
76 ############################ 92 ############################
77 # Data races in tests 93 # Data races in tests
78 94
79 # TODO(timurrrr): bug item 95 # TODO(timurrrr): bug item
80 { 96 {
81 Data race on bool in base/thread_unittest 97 Data race on bool in base/thread_unittest
82 ThreadSanitizer:Race 98 ThreadSanitizer:Race
83 ... 99 ...
84 fun:*ToggleValue*Run* 100 fun:*ToggleValue*Run*
85 } 101 }
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 191
176 # A benign race inside the implementation of internal libc mutex 192 # A benign race inside the implementation of internal libc mutex
177 { 193 {
178 Benign races in __lll_*lock_*_private 194 Benign races in __lll_*lock_*_private
179 ThreadSanitizer:Race 195 ThreadSanitizer:Race
180 fun:__lll_*lock_*_private 196 fun:__lll_*lock_*_private
181 } 197 }
182 198
183 # Benign race below thread-safe time-conversion functions 199 # Benign race below thread-safe time-conversion functions
184 { 200 {
185 fun:__tz* 201 fun:__tz*
186 ThreadSanitizer:Race 202 ThreadSanitizer:Race
187 fun:__tz* 203 fun:__tz*
188 } 204 }
189 205
190 # Benign race below thread-safe time-conversion functions 206 # Benign race below thread-safe time-conversion functions
191 { 207 {
192 fun:tzset* 208 fun:tzset*
193 ThreadSanitizer:Race 209 ThreadSanitizer:Race
194 ... 210 ...
195 fun:tzset* 211 fun:tzset*
196 } 212 }
213
214 # Benign race in thread-safe function
215 {
216 fun:mkstemp*
217 ThreadSanitizer:Race
218 ...
219 fun:mkstemp*
220 }
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