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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
385 fun:base::Histogram::* | 385 fun:base::Histogram::* |
386 fun:HistogramSynchronizer::DeserializeHistogramList* | 386 fun:HistogramSynchronizer::DeserializeHistogramList* |
387 } | 387 } |
388 | 388 |
389 { | 389 { |
390 bug_104776 Benign race to initialize pointer with the same value again. | 390 bug_104776 Benign race to initialize pointer with the same value again. |
391 ThreadSanitizer:Race | 391 ThreadSanitizer:Race |
392 fun:base::StatisticsRecorder::FindHistogram | 392 fun:base::StatisticsRecorder::FindHistogram |
393 fun:base::*Histogram::FactoryGet | 393 fun:base::*Histogram::FactoryGet |
394 } | 394 } |
395 { | |
396 bug_79050 Test to detect read contention & benign race | |
397 ThreadSanitizer:Race | |
dhollowa
2011/11/22 21:35:09
Why did you choose to elide the lines?:
fun:Re
Timur Iskhodzhanov
2011/11/25 10:18:57
Actually, the eliding would help:
http://build.chr
| |
398 ... | |
399 fun:::MockDataFetcher::GetGamepadData | |
400 fun:gamepad::Provider::DoPoll | |
401 } | |
395 | 402 |
396 # 3. Suppressions for real chromium bugs that are not yet fixed. | 403 # 3. Suppressions for real chromium bugs that are not yet fixed. |
397 ############################ | 404 ############################ |
398 # Real races in Chromium | 405 # Real races in Chromium |
399 { | 406 { |
400 bug_23433 | 407 bug_23433 |
401 ThreadSanitizer:Race | 408 ThreadSanitizer:Race |
402 fun:*logging*SetMinLogLevel* | 409 fun:*logging*SetMinLogLevel* |
403 } | 410 } |
404 | 411 |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
673 { | 680 { |
674 bug_104769 | 681 bug_104769 |
675 ThreadSanitizer:Race | 682 ThreadSanitizer:Race |
676 fun:timeout_correct | 683 fun:timeout_correct |
677 fun:event_base_loop | 684 fun:event_base_loop |
678 fun:base::MessagePumpLibevent::Run | 685 fun:base::MessagePumpLibevent::Run |
679 fun:MessageLoop::RunInternal | 686 fun:MessageLoop::RunInternal |
680 fun:MessageLoop::RunHandler | 687 fun:MessageLoop::RunHandler |
681 fun:MessageLoop::Run | 688 fun:MessageLoop::Run |
682 } | 689 } |
OLD | NEW |