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

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

Issue 3269005: Fixed tsan warnings in remoting_unittests (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: - Created 10 years, 3 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
« no previous file with comments | « remoting/jingle_glue/jingle_thread.cc ('k') | tools/valgrind/tsan/suppressions_win32.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file lists the functions, object files and source files 1 # This file lists the functions, object files and source files
2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer. 2 # which should be ignored (i.e. not instrumented) by ThreadSanitizer.
3 # See http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores. 3 # See http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores.
4 4
5 # ignore these libraries 5 # ignore these libraries
6 obj:*/ld-2* 6 obj:*/ld-2*
7 obj:*/libpthread-* 7 obj:*/libpthread-*
8 obj:*/libfreetype* 8 obj:*/libfreetype*
9 9
10 # we ignore the whole NSS library for now since 10 # we ignore the whole NSS library for now since
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 # This function generates 25% of memory accesses in net_unittests 90 # This function generates 25% of memory accesses in net_unittests
91 fun:*icu_4_2*UnicodeSet*add* 91 fun:*icu_4_2*UnicodeSet*add*
92 92
93 # There's some weird failure test going on in this tiny test function in sqlite 93 # There's some weird failure test going on in this tiny test function in sqlite
94 fun_r:threadLockingTest 94 fun_r:threadLockingTest
95 95
96 # Ignore accesses below GetCurrentThreadIdentifier. 96 # Ignore accesses below GetCurrentThreadIdentifier.
97 # There is a benign race which is hard to suppress properly, 97 # There is a benign race which is hard to suppress properly,
98 # see http://crbug.com/44580 98 # see http://crbug.com/44580
99 fun_r:*ChromeThread*GetCurrentThreadIdentifier* 99 fun_r:*ChromeThread*GetCurrentThreadIdentifier*
100
101 # Ignore accesses in talk_base::CriticalSection::CurrentThreadIsOwner()
102 # There is a benign race but we don't have dynamic_annotations in libjingle
103 # so we ignore the function instead of annotating it (for now).
104 # See http://crbug.com/53766
105 fun:*talk_base*CriticalSection*CurrentThreadIsOwner*
OLDNEW
« no previous file with comments | « remoting/jingle_glue/jingle_thread.cc ('k') | tools/valgrind/tsan/suppressions_win32.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698