| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 fun:*TOOLS_SANITY_TEST_CONCURRENT_THREAD::ThreadMain | 332 fun:*TOOLS_SANITY_TEST_CONCURRENT_THREAD::ThreadMain |
| 333 } | 333 } |
| 334 | 334 |
| 335 { | 335 { |
| 336 Benign race (or even a false positive) on atomics in ThreadCollisionWarner | 336 Benign race (or even a false positive) on atomics in ThreadCollisionWarner |
| 337 ThreadSanitizer:Race | 337 ThreadSanitizer:Race |
| 338 fun:base::subtle::NoBarrier_Store | 338 fun:base::subtle::NoBarrier_Store |
| 339 fun:base::ThreadCollisionWarner::Leave | 339 fun:base::ThreadCollisionWarner::Leave |
| 340 } | 340 } |
| 341 | 341 |
| 342 { | |
| 343 bug_100026a | |
| 344 ThreadSanitizer:Race | |
| 345 ... | |
| 346 fun:std::* | |
| 347 ... | |
| 348 fun:logging::LogMessage::*LogMessage | |
| 349 fun:base::PlatformThread::SetThreadPriority | |
| 350 fun:base::SimpleThread::SetThreadPriority | |
| 351 fun:AudioDevice::Run | |
| 352 } | |
| 353 | |
| 354 { | |
| 355 bug_100026b | |
| 356 ThreadSanitizer:Race | |
| 357 ... | |
| 358 fun:std::* | |
| 359 ... | |
| 360 fun:logging::LogMessage::*LogMessage | |
| 361 fun:base::PlatformThread::SetThreadPriority | |
| 362 fun:AudioDeviceThread::Thread::ThreadMain | |
| 363 ... | |
| 364 } | |
| 365 | |
| 366 ############################ | 342 ############################ |
| 367 # 2.2 Benign races in Chromium | 343 # 2.2 Benign races in Chromium |
| 368 { | 344 { |
| 369 bug_61179 [benign race on tracked_objects::Births] | 345 bug_61179 [benign race on tracked_objects::Births] |
| 370 ThreadSanitizer:Race | 346 ThreadSanitizer:Race |
| 371 fun:tracked_objects::Births::*Birth* | 347 fun:tracked_objects::Births::*Birth* |
| 372 } | 348 } |
| 373 | 349 |
| 374 { | 350 { |
| 375 bug_62694 [benign races in Histogram in CookieMonster] | 351 bug_62694 [benign races in Histogram in CookieMonster] |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 } | 827 } |
| 852 { | 828 { |
| 853 bug_115540 | 829 bug_115540 |
| 854 ThreadSanitizer:Race | 830 ThreadSanitizer:Race |
| 855 fun:base::Thread::message_loop | 831 fun:base::Thread::message_loop |
| 856 fun:content::BrowserThreadImpl::PostTaskHelper | 832 fun:content::BrowserThreadImpl::PostTaskHelper |
| 857 fun:content::BrowserThread::PostTask | 833 fun:content::BrowserThread::PostTask |
| 858 fun:AudioRendererHost::OnCreated | 834 fun:AudioRendererHost::OnCreated |
| 859 fun:media::AudioOutputController::DoCreate | 835 fun:media::AudioOutputController::DoCreate |
| 860 } | 836 } |
| OLD | NEW |