Suppress races in event tracing code.
Due to lack of atomics our tracing code is broken and triggering real errors in ThreadSanitizer. R=kjellander@webrtc.org BUG=2497 TEST=out-tsan/out/Debug/libjingle_media_unittest --gtest_filter=WebRtcVideoMediaChannelTest.GetStatsMultipleRecvStreams + verifying that "race:*trace_event_unique_catstatic*" exists in the list of matched suppressions. Review URL: https://webrtc-codereview.appspot.com/35719004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@8022 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
5f09564354
commit
124b9c70f9
@ -77,6 +77,10 @@ char kTSanDefaultSuppressions[] =
|
||||
"deadlock:webrtc::ViEEncoder::OnLocalSsrcChanged\n"
|
||||
"deadlock:webrtc::ViESender::RegisterSendTransport\n"
|
||||
|
||||
// TODO(pbos): Trace events are racy due to lack of proper POD atomics.
|
||||
// https://code.google.com/p/webrtc/issues/detail?id=2497
|
||||
"race:*trace_event_unique_catstatic*\n"
|
||||
|
||||
// End of suppressions.
|
||||
; // Please keep this semicolon.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user