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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 // Lock inversion in third party code, won't fix. | 267 // Lock inversion in third party code, won't fix. |
268 // https://crbug.com/455638 | 268 // https://crbug.com/455638 |
269 "deadlock:dbus::Bus::ShutdownAndBlock\n" | 269 "deadlock:dbus::Bus::ShutdownAndBlock\n" |
270 | 270 |
271 // https://crbug.com/459429 | 271 // https://crbug.com/459429 |
272 "race:randomnessPid\n" | 272 "race:randomnessPid\n" |
273 | 273 |
274 // https://crbug.com/454655 | 274 // https://crbug.com/454655 |
275 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 275 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
276 | 276 |
| 277 // https://crbug.com/539315 |
| 278 "race:MojoCreateMessagePipe\n" |
| 279 |
277 // https://crbug.com/569682 | 280 // https://crbug.com/569682 |
278 "race:blink::ThreadState::visitStackRoots\n" | 281 "race:blink::ThreadState::visitStackRoots\n" |
279 | 282 |
280 // http://crbug.com/571735 | 283 // http://crbug.com/571735 |
281 "deadlock:mojo::edk::RawChannel::Init\n" | 284 "deadlock:mojo::edk::RawChannel::Init\n" |
282 | 285 |
283 // http://crbug.com/571735 | 286 // http://crbug.com/571735 |
284 "deadlock:mojo::edk::MessagePipeDispatcher::TransportStarted\n" | 287 "deadlock:mojo::edk::MessagePipeDispatcher::TransportStarted\n" |
285 | 288 |
286 // End of suppressions. | 289 // End of suppressions. |
287 ; // Please keep this semicolon. | 290 ; // Please keep this semicolon. |
288 | 291 |
289 #endif // THREAD_SANITIZER | 292 #endif // THREAD_SANITIZER |
OLD | NEW |