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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 | 388 |
389 # Histogram macros involve string comparison in debug mode. | 389 # Histogram macros involve string comparison in debug mode. |
390 { | 390 { |
391 bug_115987b [benign races in Histogram in SequencedWorkerPool] | 391 bug_115987b [benign races in Histogram in SequencedWorkerPool] |
392 ThreadSanitizer:Race | 392 ThreadSanitizer:Race |
393 ... | 393 ... |
394 fun:std::operator== | 394 fun:std::operator== |
395 fun:base::SequencedWorkerPool::* | 395 fun:base::SequencedWorkerPool::* |
396 } | 396 } |
397 | 397 |
| 398 { |
| 399 bug_115987c |
| 400 ThreadSanitizer:Race |
| 401 fun:logging::GetMinLogLevel |
| 402 fun:base::ConditionVariable::* |
| 403 fun:base::SequencedWorkerPool::Inner::ThreadLoop |
| 404 fun:base::SequencedWorkerPool::Worker::Run |
| 405 fun:base::SimpleThread::ThreadMain |
| 406 fun:base::::ThreadFunc |
| 407 } |
| 408 |
| 409 |
398 # 3. Suppressions for real chromium bugs that are not yet fixed. | 410 # 3. Suppressions for real chromium bugs that are not yet fixed. |
399 ############################ | 411 ############################ |
400 # Real races in Chromium | 412 # Real races in Chromium |
401 { | 413 { |
402 bug_23433 | 414 bug_23433 |
403 ThreadSanitizer:Race | 415 ThreadSanitizer:Race |
404 fun:*logging*SetMinLogLevel* | 416 fun:*logging*SetMinLogLevel* |
405 } | 417 } |
406 | 418 |
407 { | 419 { |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 bug_116421 | 867 bug_116421 |
856 ThreadSanitizer:Race | 868 ThreadSanitizer:Race |
857 fun:talk_base::Event::EnsureInitialized | 869 fun:talk_base::Event::EnsureInitialized |
858 } | 870 } |
859 { | 871 { |
860 bug_116559 | 872 bug_116559 |
861 ThreadSanitizer:Race | 873 ThreadSanitizer:Race |
862 fun:logging::::LoggingTest_Dcheck_Test::TestBody | 874 fun:logging::::LoggingTest_Dcheck_Test::TestBody |
863 fun:testing::internal::HandleSehExceptionsInMethodIfSupported | 875 fun:testing::internal::HandleSehExceptionsInMethodIfSupported |
864 } | 876 } |
OLD | NEW |