OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file contains the default suppressions for ThreadSanitizer. | 5 // This file contains the default suppressions for ThreadSanitizer. |
6 // You can also pass additional suppressions via TSAN_OPTIONS: | 6 // You can also pass additional suppressions via TSAN_OPTIONS: |
7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to | 7 // TSAN_OPTIONS=suppressions=/path/to/suppressions. Please refer to |
8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 | 8 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 |
9 // for more info. | 9 // for more info. |
10 | 10 |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 // http://crbug.com/348982 | 248 // http://crbug.com/348982 |
249 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" | 249 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" |
250 "race:cricket::P2PTransportChannel::AddConnection\n" | 250 "race:cricket::P2PTransportChannel::AddConnection\n" |
251 | 251 |
252 // http://crbug.com/348984 | 252 // http://crbug.com/348984 |
253 "race:sctp_express_handle_sack\n" | 253 "race:sctp_express_handle_sack\n" |
254 | 254 |
255 // http://crbug.com/350982 | 255 // http://crbug.com/350982 |
256 "race:libvpx/vp9/decoder/vp9_thread.c\n" | 256 "race:libvpx/vp9/decoder/vp9_thread.c\n" |
257 | 257 |
258 // http://crbug.com/361790 | |
259 "race:workerGlobalScopeDestroyed\n" | |
260 | |
261 // http://crbug.com/363999 | 258 // http://crbug.com/363999 |
262 "race:v8::internal::EnterDebugger::*EnterDebugger\n" | 259 "race:v8::internal::EnterDebugger::*EnterDebugger\n" |
263 | 260 |
264 // http://crbug.com/364006 | 261 // http://crbug.com/364006 |
265 "race:gfx::ImageFamily::~ImageFamily\n" | 262 "race:gfx::ImageFamily::~ImageFamily\n" |
266 | 263 |
267 // http://crbug.com/364014 | 264 // http://crbug.com/364014 |
268 "race:WTF::Latin1Encoding()::globalLatin1Encoding\n" | 265 "race:WTF::Latin1Encoding()::globalLatin1Encoding\n" |
269 | 266 |
270 // https://code.google.com/p/v8/issues/detail?id=3143 | 267 // https://code.google.com/p/v8/issues/detail?id=3143 |
(...skipping 19 matching lines...) Expand all Loading... |
290 // False positive in libc's tzset_internal, http://crbug.com/379738. | 287 // False positive in libc's tzset_internal, http://crbug.com/379738. |
291 "race:tzset_internal\n" | 288 "race:tzset_internal\n" |
292 | 289 |
293 // http://crbug.com/380554 | 290 // http://crbug.com/380554 |
294 "deadlock:g_type_add_interface_static\n" | 291 "deadlock:g_type_add_interface_static\n" |
295 | 292 |
296 // End of suppressions. | 293 // End of suppressions. |
297 ; // Please keep this semicolon. | 294 ; // Please keep this semicolon. |
298 | 295 |
299 #endif // THREAD_SANITIZER | 296 #endif // THREAD_SANITIZER |
OLD | NEW |