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:*/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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 # SKIA uses un-annotated atomic refcount and other sync stuff | 83 # SKIA uses un-annotated atomic refcount and other sync stuff |
84 # some functions are HEAVY like png, jpeg decoding | 84 # some functions are HEAVY like png, jpeg decoding |
85 src:*third_party/skia* | 85 src:*third_party/skia* |
86 | 86 |
87 # WebKit hotspot | 87 # WebKit hotspot |
88 fun:*png_write* | 88 fun:*png_write* |
89 | 89 |
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 # SQLite has lots of tiny functions and produce too many segments on some tests. |
| 94 # See http://crbug.com/56511 |
| 95 fun_hist:*sqlite* |
| 96 |
93 # There's some weird failure test going on in this tiny test function in sqlite | 97 # There's some weird failure test going on in this tiny test function in sqlite |
94 fun_r:threadLockingTest | 98 fun_r:threadLockingTest |
95 | 99 |
96 # Ignore accesses below GetCurrentThreadIdentifier. | 100 # Ignore accesses below GetCurrentThreadIdentifier. |
97 # There is a benign race which is hard to suppress properly, | 101 # There is a benign race which is hard to suppress properly, |
98 # see http://crbug.com/44580 | 102 # see http://crbug.com/44580 |
99 fun_r:*ChromeThread*GetCurrentThreadIdentifier* | 103 fun_r:*ChromeThread*GetCurrentThreadIdentifier* |
OLD | NEW |