| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" | 209 "race:cricket::P2PTransportChannel::OnConnectionDestroyed\n" |
| 210 "race:cricket::P2PTransportChannel::AddConnection\n" | 210 "race:cricket::P2PTransportChannel::AddConnection\n" |
| 211 | 211 |
| 212 // http://crbug.com/348984 | 212 // http://crbug.com/348984 |
| 213 "race:sctp_express_handle_sack\n" | 213 "race:sctp_express_handle_sack\n" |
| 214 "race:system_base_info\n" | 214 "race:system_base_info\n" |
| 215 | 215 |
| 216 // https://code.google.com/p/v8/issues/detail?id=3143 | 216 // https://code.google.com/p/v8/issues/detail?id=3143 |
| 217 "race:v8::internal::FLAG_track_double_fields\n" | 217 "race:v8::internal::FLAG_track_double_fields\n" |
| 218 | 218 |
| 219 // https://crbug.com/369257 | |
| 220 // TODO(mtklein): annotate properly and remove suppressions. | |
| 221 "race:SandboxIPCHandler::HandleFontMatchRequest\n" | |
| 222 "race:SkFontConfigInterfaceDirect::matchFamilyName\n" | |
| 223 "race:SkFontConfigInterface::GetSingletonDirectInterface\n" | |
| 224 "race:FcStrStaticName\n" | |
| 225 | |
| 226 // http://crbug.com/374135 | 219 // http://crbug.com/374135 |
| 227 "race:media::AlsaWrapper::PcmWritei\n" | 220 "race:media::AlsaWrapper::PcmWritei\n" |
| 228 | 221 |
| 229 // False positive in libc's tzset_internal, http://crbug.com/379738. | 222 // False positive in libc's tzset_internal, http://crbug.com/379738. |
| 230 "race:tzset_internal\n" | 223 "race:tzset_internal\n" |
| 231 | 224 |
| 232 // http://crbug.com/380554 | 225 // http://crbug.com/380554 |
| 233 "deadlock:g_type_add_interface_static\n" | 226 "deadlock:g_type_add_interface_static\n" |
| 234 | 227 |
| 235 // http:://crbug.com/386385 | 228 // http:://crbug.com/386385 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 // https://crbug.com/569682 | 267 // https://crbug.com/569682 |
| 275 "race:blink::ThreadState::visitStackRoots\n" | 268 "race:blink::ThreadState::visitStackRoots\n" |
| 276 | 269 |
| 277 // http://crbug.com/582274 | 270 // http://crbug.com/582274 |
| 278 "race:usrsctp_close\n" | 271 "race:usrsctp_close\n" |
| 279 | 272 |
| 280 // End of suppressions. | 273 // End of suppressions. |
| 281 ; // Please keep this semicolon. | 274 ; // Please keep this semicolon. |
| 282 | 275 |
| 283 #endif // THREAD_SANITIZER | 276 #endif // THREAD_SANITIZER |
| OLD | NEW |