| 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 29 matching lines...) Expand all Loading... |
| 40 "race:pcache1AllocPage\n" | 40 "race:pcache1AllocPage\n" |
| 41 | 41 |
| 42 // http://crbug.com/102327. | 42 // http://crbug.com/102327. |
| 43 // Test-only race, won't fix. | 43 // Test-only race, won't fix. |
| 44 "race:tracked_objects::ThreadData::ShutdownSingleThreadedCleanup\n" | 44 "race:tracked_objects::ThreadData::ShutdownSingleThreadedCleanup\n" |
| 45 | 45 |
| 46 // http://crbug.com/120808 | 46 // http://crbug.com/120808 |
| 47 "race:base/threading/watchdog.cc\n" | 47 "race:base/threading/watchdog.cc\n" |
| 48 | 48 |
| 49 // http://crbug.com/157586 | 49 // http://crbug.com/157586 |
| 50 "race:third_party/libvpx_new/source/libvpx/vp8/decoder/threading.c\n" | 50 "race:third_party/libvpx/source/libvpx/vp8/decoder/threading.c\n" |
| 51 | 51 |
| 52 // http://crbug.com/158718 | 52 // http://crbug.com/158718 |
| 53 "race:third_party/ffmpeg/libavcodec/pthread.c\n" | 53 "race:third_party/ffmpeg/libavcodec/pthread.c\n" |
| 54 "race:third_party/ffmpeg/libavcodec/pthread_frame.c\n" | 54 "race:third_party/ffmpeg/libavcodec/pthread_frame.c\n" |
| 55 "race:third_party/ffmpeg/libavcodec/vp8.c\n" | 55 "race:third_party/ffmpeg/libavcodec/vp8.c\n" |
| 56 "race:third_party/ffmpeg/libavutil/mem.c\n" | 56 "race:third_party/ffmpeg/libavutil/mem.c\n" |
| 57 "race:*HashFrameForTesting\n" | 57 "race:*HashFrameForTesting\n" |
| 58 "race:third_party/ffmpeg/libavcodec/h264pred.c\n" | 58 "race:third_party/ffmpeg/libavcodec/h264pred.c\n" |
| 59 "race:media::ReleaseData\n" | 59 "race:media::ReleaseData\n" |
| 60 | 60 |
| 61 // http://crbug.com/158922 | 61 // http://crbug.com/158922 |
| 62 "race:third_party/libvpx_new/source/libvpx/vp8/encoder/*\n" | 62 "race:third_party/libvpx/source/libvpx/vp8/encoder/*\n" |
| 63 "race:third_party/libvpx_new/source/libvpx/vp9/encoder/*\n" | 63 "race:third_party/libvpx/source/libvpx/vp9/encoder/*\n" |
| 64 | 64 |
| 65 // http://crbug.com/189177 | 65 // http://crbug.com/189177 |
| 66 "race:thread_manager\n" | 66 "race:thread_manager\n" |
| 67 "race:v8::Locker::Initialize\n" | 67 "race:v8::Locker::Initialize\n" |
| 68 | 68 |
| 69 // http://crbug.com/239359 | 69 // http://crbug.com/239359 |
| 70 "race:media::TestInputCallback::OnData\n" | 70 "race:media::TestInputCallback::OnData\n" |
| 71 | 71 |
| 72 // http://crbug.com/244368 | 72 // http://crbug.com/244368 |
| 73 "race:skia::BeginPlatformPaint\n" | 73 "race:skia::BeginPlatformPaint\n" |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 // https://crbug.com/569682 | 277 // https://crbug.com/569682 |
| 278 "race:blink::ThreadState::visitStackRoots\n" | 278 "race:blink::ThreadState::visitStackRoots\n" |
| 279 | 279 |
| 280 // http://crbug.com/582274 | 280 // http://crbug.com/582274 |
| 281 "race:usrsctp_close\n" | 281 "race:usrsctp_close\n" |
| 282 | 282 |
| 283 // End of suppressions. | 283 // End of suppressions. |
| 284 ; // Please keep this semicolon. | 284 ; // Please keep this semicolon. |
| 285 | 285 |
| 286 #endif // THREAD_SANITIZER | 286 #endif // THREAD_SANITIZER |
| OLD | NEW |