OLD | NEW |
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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 } | 346 } |
347 | 347 |
348 ############################ | 348 ############################ |
349 # 2.2 Benign races in Chromium | 349 # 2.2 Benign races in Chromium |
350 { | 350 { |
351 bug_61179 [benign race on tracked_objects::Births] | 351 bug_61179 [benign race on tracked_objects::Births] |
352 ThreadSanitizer:Race | 352 ThreadSanitizer:Race |
353 fun:tracked_objects::Births::*Birth* | 353 fun:tracked_objects::Births::*Birth* |
354 } | 354 } |
355 | 355 |
356 { | |
357 benign race on Histogram::Add - TO BE REMOVED SOON | |
358 ThreadSanitizer:Race | |
359 ... | |
360 fun:base::SampleVector::Accumulate | |
361 fun:base::Histogram::Add | |
362 } | |
363 | |
364 # 3. Suppressions for real chromium bugs that are not yet fixed. | 356 # 3. Suppressions for real chromium bugs that are not yet fixed. |
365 ############################ | 357 ############################ |
366 # Real races in Chromium | 358 # Real races in Chromium |
367 { | 359 { |
368 bug_24419 | 360 bug_24419 |
369 ThreadSanitizer:Race | 361 ThreadSanitizer:Race |
370 fun:*BrowserProcessImpl*nspector*iles* | 362 fun:*BrowserProcessImpl*nspector*iles* |
371 } | 363 } |
372 | 364 |
373 { | 365 { |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
951 fun:* | 943 fun:* |
952 fun:base::internal::RunnableAdapter::Run | 944 fun:base::internal::RunnableAdapter::Run |
953 } | 945 } |
954 { | 946 { |
955 bug_172306 | 947 bug_172306 |
956 ThreadSanitizer:Race | 948 ThreadSanitizer:Race |
957 fun:ThreadWatcher::OnPongMessage | 949 fun:ThreadWatcher::OnPongMessage |
958 fun:CustomThreadWatcher::OnPongMessage | 950 fun:CustomThreadWatcher::OnPongMessage |
959 fun:base::internal::RunnableAdapter::Run | 951 fun:base::internal::RunnableAdapter::Run |
960 } | 952 } |
OLD | NEW |