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 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" | 232 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" |
233 "race:cricket::P2PTransportChannel::AddConnection\n" | 233 "race:cricket::P2PTransportChannel::AddConnection\n" |
234 | 234 |
235 // http://crbug.com/348984 | 235 // http://crbug.com/348984 |
236 "race:sctp_express_handle_sack\n" | 236 "race:sctp_express_handle_sack\n" |
237 "race:system_base_info\n" | 237 "race:system_base_info\n" |
238 | 238 |
239 // http://crbug.com/363999 | 239 // http://crbug.com/363999 |
240 "race:v8::internal::EnterDebugger::*EnterDebugger\n" | 240 "race:v8::internal::EnterDebugger::*EnterDebugger\n" |
241 | 241 |
242 // http://crbug.com/364006 | |
243 "race:gfx::ImageFamily::~ImageFamily\n" | |
244 | |
245 // https://code.google.com/p/v8/issues/detail?id=3143 | 242 // https://code.google.com/p/v8/issues/detail?id=3143 |
246 "race:v8::internal::FLAG_track_double_fields\n" | 243 "race:v8::internal::FLAG_track_double_fields\n" |
247 | 244 |
248 // https://crbug.com/369257 | 245 // https://crbug.com/369257 |
249 // TODO(mtklein): annotate properly and remove suppressions. | 246 // TODO(mtklein): annotate properly and remove suppressions. |
250 "race:SandboxIPCHandler::HandleFontMatchRequest\n" | 247 "race:SandboxIPCHandler::HandleFontMatchRequest\n" |
251 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" | 248 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" |
252 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" | 249 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" |
253 "race:FcStrStaticName\n" | 250 "race:FcStrStaticName\n" |
254 | 251 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 // https://crbug.com/459429 | 310 // https://crbug.com/459429 |
314 "race:randomnessPid\n" | 311 "race:randomnessPid\n" |
315 | 312 |
316 // https://crbug.com/454655 | 313 // https://crbug.com/454655 |
317 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 314 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
318 | 315 |
319 // End of suppressions. | 316 // End of suppressions. |
320 ; // Please keep this semicolon. | 317 ; // Please keep this semicolon. |
321 | 318 |
322 #endif // THREAD_SANITIZER | 319 #endif // THREAD_SANITIZER |
OLD | NEW |