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

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

Issue 8400033: Tsan: Ignore DiskCacheBackendTest::BackendTrimInvalidEntry2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 | 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 # 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:*/libfreetype* 6 obj:*/libfreetype*
7 obj:*/libdbus* 7 obj:*/libdbus*
8 8
9 # we ignore the whole NSS library for now since 9 # we ignore the whole NSS library for now since
10 # its instrumentation is very slow. 10 # its instrumentation is very slow.
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 fun:__gen_tempname 152 fun:__gen_tempname
153 153
154 # The sqlite cache is racing against a few different stacktraces, 154 # The sqlite cache is racing against a few different stacktraces,
155 # so let's ignore it recursively. See http://crbug.com/84094 155 # so let's ignore it recursively. See http://crbug.com/84094
156 fun_r:pcache1Fetch 156 fun_r:pcache1Fetch
157 157
158 # "Suppress" a data race in TraceLog::GetCategory which has 158 # "Suppress" a data race in TraceLog::GetCategory which has
159 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want 159 # fun:MessageLoop::RunTask at the top of the "current" stack which we don't want
160 # to suppress. See http://crbug.com/98926 160 # to suppress. See http://crbug.com/98926
161 fun:*base*debug*TraceLog*GetCategoryInternal* 161 fun:*base*debug*TraceLog*GetCategoryInternal*
162
163 # Ignore intentional races from this particular test.
kcc2 2011/10/28 02:00:58 1. Why do we prefer ignore over a suppression? Ign
164 fun_r:DiskCacheBackendTest*BackendTrimInvalidEntry2
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698