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

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

Issue 8689011: Renderer reading side of gamepad (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: move seqlock to gamepad-specific, improve description Created 9 years 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
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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
398 fun:Replace_memcpy
399 fun:memcpy
400 fun:::MockDataFetcher::GetGamepadData
401 fun:gamepad::Provider::DoPoll
402 }
403 395
404 # 3. Suppressions for real chromium bugs that are not yet fixed. 396 # 3. Suppressions for real chromium bugs that are not yet fixed.
405 ############################ 397 ############################
406 # Real races in Chromium 398 # Real races in Chromium
407 { 399 {
408 bug_23433 400 bug_23433
409 ThreadSanitizer:Race 401 ThreadSanitizer:Race
410 fun:*logging*SetMinLogLevel* 402 fun:*logging*SetMinLogLevel*
411 } 403 }
412 404
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 { 673 {
682 bug_104769 674 bug_104769
683 ThreadSanitizer:Race 675 ThreadSanitizer:Race
684 fun:timeout_correct 676 fun:timeout_correct
685 fun:event_base_loop 677 fun:event_base_loop
686 fun:base::MessagePumpLibevent::Run 678 fun:base::MessagePumpLibevent::Run
687 fun:MessageLoop::RunInternal 679 fun:MessageLoop::RunInternal
688 fun:MessageLoop::RunHandler 680 fun:MessageLoop::RunHandler
689 fun:MessageLoop::Run 681 fun:MessageLoop::Run
690 } 682 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698