Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: webrtc/build/sanitizers/tsan_suppressions_webrtc.cc

Issue 2651913002: Moving sanitizers from build/ to base/ (Closed)
Patch Set: Moving sanitizers from base/ to tools-webrtc/ Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/build/sanitizers/lsan_suppressions_webrtc.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 // This file contains the WebRTC suppressions for ThreadSanitizer.
12 // Please refer to
13 // http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2
14 // for more info.
15
16 #if defined(THREAD_SANITIZER)
17
18 // Please make sure the code below declares a single string variable
19 // kTSanDefaultSuppressions contains TSan suppressions delimited by newlines.
20 // See http://dev.chromium.org/developers/testing/threadsanitizer-tsan-v2
21 // for the instructions on writing suppressions.
22 char kTSanDefaultSuppressions[] =
23
24 // WebRTC specific suppressions.
25
26 // Split up suppressions covered previously by thread.cc and messagequeue.cc.
27 "race:vp8cx_remove_encoder_threads\n"
28 "race:third_party/libvpx/source/libvpx/vp9/common/vp9_scan.h\n"
29
30 // Usage of trace callback and trace level is racy in rtc_media_unittests.
31 // https://code.google.com/p/webrtc/issues/detail?id=3372
32 "race:webrtc::TraceImpl::WriteToFile\n"
33 "race:webrtc::VideoEngine::SetTraceFilter\n"
34 "race:webrtc::VoiceEngine::SetTraceFilter\n"
35 "race:webrtc::Trace::set_level_filter\n"
36 "race:webrtc::GetStaticInstance<webrtc::TraceImpl>\n"
37
38 // Race in pulse initialization.
39 // https://code.google.com/p/webrtc/issues/detail?id=5152
40 "race:webrtc::AudioDeviceLinuxPulse::Init\n"
41
42 // rtc_unittests
43 // https://code.google.com/p/webrtc/issues/detail?id=3911 for details.
44 "race:rtc::AsyncInvoker::OnMessage\n"
45 "race:rtc::FireAndForgetAsyncClosure<FunctorB>::Execute\n"
46 "race:rtc::MessageQueueManager::Clear\n"
47 "race:rtc::Thread::Clear\n"
48 // https://code.google.com/p/webrtc/issues/detail?id=3914
49 "race:rtc::AsyncInvoker::~AsyncInvoker\n"
50 // https://code.google.com/p/webrtc/issues/detail?id=2080
51 "race:webrtc/base/logging.cc\n"
52 "race:webrtc/base/sharedexclusivelock_unittest.cc\n"
53 "race:webrtc/base/signalthread_unittest.cc\n"
54 // https://code.google.com/p/webrtc/issues/detail?id=4456
55 "deadlock:rtc::MessageQueueManager::Clear\n"
56 "deadlock:rtc::MessageQueueManager::ClearInternal\n"
57
58 // rtc_pc_unittests
59 // https://code.google.com/p/webrtc/issues/detail?id=2079
60 "race:webrtc/base/testclient.cc\n"
61 "race:webrtc/base/virtualsocketserver.cc\n"
62 "race:talk/p2p/base/stunserver_unittest.cc\n"
63
64 // third_party/usrsctp
65 // TODO(jiayl): https://code.google.com/p/webrtc/issues/detail?id=3492
66 "race:user_sctp_timer_iterate\n"
67
68 // https://code.google.com/p/webrtc/issues/detail?id=5151
69 "race:sctp_close\n"
70
71 // Potential deadlocks detected after roll in r6516.
72 // https://code.google.com/p/webrtc/issues/detail?id=3509
73 "deadlock:webrtc::test::UdpSocketManagerPosixImpl::RemoveSocket\n"
74
75 // TODO(pbos): Trace events are racy due to lack of proper POD atomics.
76 // https://code.google.com/p/webrtc/issues/detail?id=2497
77 "race:*trace_event_unique_catstatic*\n"
78
79 // https://code.google.com/p/webrtc/issues/detail?id=4719
80 "race:webrtc::voe::TransmitMixer::PrepareDemux\n"
81 "race:webrtc::voe::TransmitMixer::EnableStereoChannelSwapping\n"
82
83 // Race between InitCpuFlags and TestCpuFlag in libyuv.
84 // https://code.google.com/p/libyuv/issues/detail?id=508
85 "race:InitCpuFlags\n"
86
87 // End of suppressions.
88 ; // Please keep this semicolon.
89
90 #endif // THREAD_SANITIZER
OLDNEW
« no previous file with comments | « webrtc/build/sanitizers/lsan_suppressions_webrtc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698