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

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

Issue 6297016: Suppress TSan reports from libdbus and ignore the lib... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 | « no previous file | tools/valgrind/tsan/suppressions.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 obj:*/libdbus*
9 10
10 # we ignore the whole NSS library for now since 11 # we ignore the whole NSS library for now since
11 # its instrumentation is very slow. 12 # its instrumentation is very slow.
12 # TODO(timurrrr): investigate whether we need to instrument it 13 # TODO(timurrrr): investigate whether we need to instrument it
13 obj:*/libnss* 14 obj:*/libnss*
14 obj:*/nss/* 15 obj:*/nss/*
15 16
16 # ignore pulseaudio - We don't have symbols there and it can be slow otherwise 17 # ignore pulseaudio - We don't have symbols there and it can be slow otherwise
17 obj:*/libpulse.so* 18 obj:*/libpulse.so*
18 19
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 # zlib-related reports, not investigated yet. See http://crbug.com/70932 122 # zlib-related reports, not investigated yet. See http://crbug.com/70932
122 fun_r:*remoting*CompressorZlib*Process* 123 fun_r:*remoting*CompressorZlib*Process*
123 124
124 # X11 reads the _XErrorFunction callback in a racey way, see 125 # X11 reads the _XErrorFunction callback in a racey way, see
125 # http://crbug.com/65278 126 # http://crbug.com/65278
126 fun:XSetErrorHandler 127 fun:XSetErrorHandler
127 128
128 # TSan doesn't support lockf and hence shared memory locks in this function; 129 # TSan doesn't support lockf and hence shared memory locks in this function;
129 # http://crbug.com/45083 130 # http://crbug.com/45083
130 fun_r:*base*StatsTable*AddCounter* 131 fun_r:*base*StatsTable*AddCounter*
OLDNEW
« no previous file with comments | « no previous file | tools/valgrind/tsan/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698