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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 } | 379 } |
380 | 380 |
381 { | 381 { |
382 bug_64185b [probably-benign races in Histogram in skia::ImageOperations] | 382 bug_64185b [probably-benign races in Histogram in skia::ImageOperations] |
383 ThreadSanitizer:Race | 383 ThreadSanitizer:Race |
384 ... | 384 ... |
385 fun:base::Histogram::* | 385 fun:base::Histogram::* |
386 fun:HistogramSynchronizer::DeserializeHistogramList* | 386 fun:HistogramSynchronizer::DeserializeHistogramList* |
387 } | 387 } |
388 | 388 |
| 389 { |
| 390 bug_104776 Benign race to initialize pointer with the same value again. |
| 391 ThreadSanitizer:Race |
| 392 fun:base::StatisticsRecorder::FindHistogram |
| 393 fun:base::*Histogram::FactoryGet |
| 394 } |
| 395 |
389 # 3. Suppressions for real chromium bugs that are not yet fixed. | 396 # 3. Suppressions for real chromium bugs that are not yet fixed. |
390 ############################ | 397 ############################ |
391 # Real races in Chromium | 398 # Real races in Chromium |
392 { | 399 { |
393 bug_23433 | 400 bug_23433 |
394 ThreadSanitizer:Race | 401 ThreadSanitizer:Race |
395 fun:*logging*SetMinLogLevel* | 402 fun:*logging*SetMinLogLevel* |
396 } | 403 } |
397 | 404 |
398 { | 405 { |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 { | 692 { |
686 bug_104769 | 693 bug_104769 |
687 ThreadSanitizer:Race | 694 ThreadSanitizer:Race |
688 fun:timeout_correct | 695 fun:timeout_correct |
689 fun:event_base_loop | 696 fun:event_base_loop |
690 fun:base::MessagePumpLibevent::Run | 697 fun:base::MessagePumpLibevent::Run |
691 fun:MessageLoop::RunInternal | 698 fun:MessageLoop::RunInternal |
692 fun:MessageLoop::RunHandler | 699 fun:MessageLoop::RunHandler |
693 fun:MessageLoop::Run | 700 fun:MessageLoop::Run |
694 } | 701 } |
695 { | |
696 bug_104776 | |
697 ThreadSanitizer:Race | |
698 fun:base::StatisticsRecorder::FindHistogram | |
699 fun:base::LinearHistogram::FactoryGet | |
700 fun:dbus::ObjectProxy::RunResponseCallback | |
701 fun:base::internal::Invoker4::DoInvoke | |
702 } | |
OLD | NEW |