| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 // This file contains the WebRTC suppressions for ThreadSanitizer. | 11 // This file contains the WebRTC suppressions for ThreadSanitizer. |
| 12 // Please refer to | 12 // Please refer to |
| 13 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 | 13 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 |
| 14 // for more info. | 14 // for more info. |
| 15 | 15 |
| 16 #if defined(THREAD_SANITIZER) | 16 #if defined(THREAD_SANITIZER) |
| 17 | 17 |
| 18 // Please make sure the code below declares a single string variable | 18 // Please make sure the code below declares a single string variable |
| 19 // kTSanDefaultSuppressions contains TSan suppressions delimited by newlines. | 19 // kTSanDefaultSuppressions contains TSan suppressions delimited by newlines. |
| 20 // See http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 | 20 // See http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2 |
| 21 // for the instructions on writing suppressions. | 21 // for the instructions on writing suppressions. |
| 22 char kTSanDefaultSuppressions[] = | 22 char kTSanDefaultSuppressions[] = |
| 23 | 23 |
| 24 // WebRTC specific suppressions. | 24 // WebRTC specific suppressions. |
| 25 | 25 |
| 26 // Split up suppressions covered previously by thread.cc and messagequeue.cc. | 26 // Split up suppressions covered previously by thread.cc and messagequeue.cc. |
| 27 "race:rtc::MessageQueue::Quit\n" | 27 "race:rtc::MessageQueue::Quit\n" |
| 28 "race:vp8cx_remove_encoder_threads\n" | 28 "race:vp8cx_remove_encoder_threads\n" |
| 29 "race:third_party/libvpx_new/source/libvpx/vp9/common/vp9_scan.h\n" | 29 "race:third_party/libvpx/source/libvpx/vp9/common/vp9_scan.h\n" |
| 30 | 30 |
| 31 // Usage of trace callback and trace level is racy in rtc_media_unittests. | 31 // Usage of trace callback and trace level is racy in rtc_media_unittests. |
| 32 // https://code.google.com/p/webrtc/issues/detail?id=3372 | 32 // https://code.google.com/p/webrtc/issues/detail?id=3372 |
| 33 "race:webrtc::TraceImpl::WriteToFile\n" | 33 "race:webrtc::TraceImpl::WriteToFile\n" |
| 34 "race:webrtc::VideoEngine::SetTraceFilter\n" | 34 "race:webrtc::VideoEngine::SetTraceFilter\n" |
| 35 "race:webrtc::VoiceEngine::SetTraceFilter\n" | 35 "race:webrtc::VoiceEngine::SetTraceFilter\n" |
| 36 "race:webrtc::Trace::set_level_filter\n" | 36 "race:webrtc::Trace::set_level_filter\n" |
| 37 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n" | 37 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n" |
| 38 | 38 |
| 39 // Audio processing | 39 // Audio processing |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 // https://bugs.chromium.org/p/webrtc/issues/detail?id=5524 | 95 // https://bugs.chromium.org/p/webrtc/issues/detail?id=5524 |
| 96 "race:AudioChannelTest_SendSrtpToSrtpOnThread_Test::TestBody\n" | 96 "race:AudioChannelTest_SendSrtpToSrtpOnThread_Test::TestBody\n" |
| 97 "race:VideoChannelTest_SendSrtpToSrtpOnThread_Test::TestBody\n" | 97 "race:VideoChannelTest_SendSrtpToSrtpOnThread_Test::TestBody\n" |
| 98 "race:DataChannelTest_SendSrtpToSrtpOnThread_Test::TestBody\n" | 98 "race:DataChannelTest_SendSrtpToSrtpOnThread_Test::TestBody\n" |
| 99 | 99 |
| 100 // End of suppressions. | 100 // End of suppressions. |
| 101 ; // Please keep this semicolon. | 101 ; // Please keep this semicolon. |
| 102 | 102 |
| 103 #endif // THREAD_SANITIZER | 103 #endif // THREAD_SANITIZER |
| OLD | NEW |