| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 // http://crbug.com/158718 | 55 // http://crbug.com/158718 |
| 56 "race:third_party/ffmpeg/libavcodec/pthread.c\n" | 56 "race:third_party/ffmpeg/libavcodec/pthread.c\n" |
| 57 "race:third_party/ffmpeg/libavcodec/pthread_frame.c\n" | 57 "race:third_party/ffmpeg/libavcodec/pthread_frame.c\n" |
| 58 "race:third_party/ffmpeg/libavcodec/vp8.c\n" | 58 "race:third_party/ffmpeg/libavcodec/vp8.c\n" |
| 59 "race:third_party/ffmpeg/libavutil/mem.c\n" | 59 "race:third_party/ffmpeg/libavutil/mem.c\n" |
| 60 "race:*HashFrameForTesting\n" | 60 "race:*HashFrameForTesting\n" |
| 61 "race:third_party/ffmpeg/libavcodec/h264pred.c\n" | 61 "race:third_party/ffmpeg/libavcodec/h264pred.c\n" |
| 62 "race:media::ReleaseData\n" | 62 "race:media::ReleaseData\n" |
| 63 | 63 |
| 64 // http://crbug.com/508425 |
| 65 "race:ff_init_ff_cos_tabs\n" |
| 66 |
| 64 // http://crbug.com/158922 | 67 // http://crbug.com/158922 |
| 65 "race:third_party/libvpx_new/source/libvpx/vp8/encoder/*\n" | 68 "race:third_party/libvpx_new/source/libvpx/vp8/encoder/*\n" |
| 66 "race:third_party/libvpx_new/source/libvpx/vp9/encoder/*\n" | 69 "race:third_party/libvpx_new/source/libvpx/vp9/encoder/*\n" |
| 67 | 70 |
| 68 // http://crbug.com/189177 | 71 // http://crbug.com/189177 |
| 69 "race:thread_manager\n" | 72 "race:thread_manager\n" |
| 70 "race:v8::Locker::Initialize\n" | 73 "race:v8::Locker::Initialize\n" |
| 71 | 74 |
| 72 // http://crbug.com/239359 | 75 // http://crbug.com/239359 |
| 73 "race:media::TestInputCallback::OnData\n" | 76 "race:media::TestInputCallback::OnData\n" |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 // https://crbug.com/454655 | 303 // https://crbug.com/454655 |
| 301 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" | 304 "race:content::BrowserTestBase::PostTaskToInProcessRendererAndWait\n" |
| 302 | 305 |
| 303 // https://crbug.com/539315 | 306 // https://crbug.com/539315 |
| 304 "race:MojoCreateMessagePipe\n" | 307 "race:MojoCreateMessagePipe\n" |
| 305 | 308 |
| 306 // End of suppressions. | 309 // End of suppressions. |
| 307 ; // Please keep this semicolon. | 310 ; // Please keep this semicolon. |
| 308 | 311 |
| 309 #endif // THREAD_SANITIZER | 312 #endif // THREAD_SANITIZER |
| OLD | NEW |