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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 // http://crbug.com/348984 | 232 // http://crbug.com/348984 |
233 "race:sctp_express_handle_sack\n" | 233 "race:sctp_express_handle_sack\n" |
234 "race:system_base_info\n" | 234 "race:system_base_info\n" |
235 | 235 |
236 // http://crbug.com/363999 | 236 // http://crbug.com/363999 |
237 "race:v8::internal::EnterDebugger::*EnterDebugger\n" | 237 "race:v8::internal::EnterDebugger::*EnterDebugger\n" |
238 | 238 |
239 // https://code.google.com/p/v8/issues/detail?id=3143 | 239 // https://code.google.com/p/v8/issues/detail?id=3143 |
240 "race:v8::internal::FLAG_track_double_fields\n" | 240 "race:v8::internal::FLAG_track_double_fields\n" |
241 | 241 |
| 242 // https://crbug.com/369257 |
| 243 // TODO(mtklein): annotate properly and remove suppressions. |
| 244 "race:SandboxIPCHandler::HandleFontMatchRequest\n" |
| 245 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" |
| 246 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" |
| 247 "race:FcStrStaticName\n" |
| 248 |
242 // http://crbug.com/374135 | 249 // http://crbug.com/374135 |
243 "race:media::AlsaWrapper::PcmWritei\n" | 250 "race:media::AlsaWrapper::PcmWritei\n" |
244 | 251 |
245 // False positive in libc's tzset_internal, http://crbug.com/379738. | 252 // False positive in libc's tzset_internal, http://crbug.com/379738. |
246 "race:tzset_internal\n" | 253 "race:tzset_internal\n" |
247 | 254 |
248 // http://crbug.com/380554 | 255 // http://crbug.com/380554 |
249 "deadlock:g_type_add_interface_static\n" | 256 "deadlock:g_type_add_interface_static\n" |
250 | 257 |
251 // http:://crbug.com/386385 | 258 // http:://crbug.com/386385 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 // https://crbug.com/454655 | 300 // https://crbug.com/454655 |
294 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 301 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
295 | 302 |
296 // https://crbug.com/539315 | 303 // https://crbug.com/539315 |
297 "race:MojoCreateMessagePipe\n" | 304 "race:MojoCreateMessagePipe\n" |
298 | 305 |
299 // End of suppressions. | 306 // End of suppressions. |
300 ; // Please keep this semicolon. | 307 ; // Please keep this semicolon. |
301 | 308 |
302 #endif // THREAD_SANITIZER | 309 #endif // THREAD_SANITIZER |
OLD | NEW |