Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: tools/valgrind/tsan/suppressions.txt

Issue 9558007: Ensure that SequencedWorkerPools in tests don't outlive their tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test failures Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/trace_subscriber_stdio_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
410 # 3. Suppressions for real chromium bugs that are not yet fixed. 398 # 3. Suppressions for real chromium bugs that are not yet fixed.
411 ############################ 399 ############################
412 # Real races in Chromium 400 # Real races in Chromium
413 { 401 {
414 bug_23433 402 bug_23433
415 ThreadSanitizer:Race 403 ThreadSanitizer:Race
416 fun:*logging*SetMinLogLevel* 404 fun:*logging*SetMinLogLevel*
417 } 405 }
418 406
419 { 407 {
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 bug_116421 855 bug_116421
868 ThreadSanitizer:Race 856 ThreadSanitizer:Race
869 fun:talk_base::Event::EnsureInitialized 857 fun:talk_base::Event::EnsureInitialized
870 } 858 }
871 { 859 {
872 bug_116559 860 bug_116559
873 ThreadSanitizer:Race 861 ThreadSanitizer:Race
874 fun:logging::::LoggingTest_Dcheck_Test::TestBody 862 fun:logging::::LoggingTest_Dcheck_Test::TestBody
875 fun:testing::internal::HandleSehExceptionsInMethodIfSupported 863 fun:testing::internal::HandleSehExceptionsInMethodIfSupported
876 } 864 }
OLDNEW
« no previous file with comments | « content/browser/trace_subscriber_stdio_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698