Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 | |
| OLD | NEW |