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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 242 // https://crbug.com/369257 |
243 // TODO(mtklein): annotate properly and remove suppressions. | 243 // TODO(mtklein): annotate properly and remove suppressions. |
244 "race:SandboxIPCHandler::HandleFontMatchRequest\n" | 244 "race:SandboxIPCHandler::HandleFontMatchRequest\n" |
245 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" | 245 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" |
246 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" | 246 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" |
247 "race:FcStrStaticName\n" | 247 "race:FcStrStaticName\n" |
248 | 248 |
249 // http://crbug.com/372807 | |
250 "deadlock:net::X509Certificate::CreateCertificateListFromBytes\n" | |
251 "deadlock:net::X509Certificate::CreateFromBytes\n" | |
252 "deadlock:net::SSLClientSocketNSS::Core::DoHandshakeLoop\n" | |
253 | |
254 // http://crbug.com/374135 | 249 // http://crbug.com/374135 |
255 "race:media::AlsaWrapper::PcmWritei\n" | 250 "race:media::AlsaWrapper::PcmWritei\n" |
256 | 251 |
257 // False positive in libc's tzset_internal, http://crbug.com/379738. | 252 // False positive in libc's tzset_internal, http://crbug.com/379738. |
258 "race:tzset_internal\n" | 253 "race:tzset_internal\n" |
259 | 254 |
260 // http://crbug.com/380554 | 255 // http://crbug.com/380554 |
261 "deadlock:g_type_add_interface_static\n" | 256 "deadlock:g_type_add_interface_static\n" |
262 | 257 |
263 // http:://crbug.com/386385 | 258 // http:://crbug.com/386385 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 // https://crbug.com/454655 | 300 // https://crbug.com/454655 |
306 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 301 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
307 | 302 |
308 // https://crbug.com/539315 | 303 // https://crbug.com/539315 |
309 "race:MojoCreateMessagePipe\n" | 304 "race:MojoCreateMessagePipe\n" |
310 | 305 |
311 // End of suppressions. | 306 // End of suppressions. |
312 ; // Please keep this semicolon. | 307 ; // Please keep this semicolon. |
313 | 308 |
314 #endif // THREAD_SANITIZER | 309 #endif // THREAD_SANITIZER |
OLD | NEW |