From 792982b340867a46ca14f7d3cc836d1411942fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Bostr=C3=B6m?= Date: Mon, 2 Nov 2015 13:42:39 +0100 Subject: [PATCH] Suppress data races in AudioDeviceLinuxPulse::Init. Triggers more often on tsanv2 in parallel, suppressing for now to get the parallel bot into the main waterfall. BUG=chromium:445880, webrtc:5152 R=kjellander@webrtc.org Review URL: https://codereview.webrtc.org/1428033002 . Cr-Commit-Position: refs/heads/master@{#10480} --- webrtc/build/sanitizers/tsan_suppressions_webrtc.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webrtc/build/sanitizers/tsan_suppressions_webrtc.cc b/webrtc/build/sanitizers/tsan_suppressions_webrtc.cc index 94a43873ab..115099099f 100644 --- a/webrtc/build/sanitizers/tsan_suppressions_webrtc.cc +++ b/webrtc/build/sanitizers/tsan_suppressions_webrtc.cc @@ -42,6 +42,10 @@ char kTSanDefaultSuppressions[] = "race:webrtc/modules/audio_processing/aec/aec_core.c\n" "race:webrtc/modules/audio_processing/aec/aec_rdft.c\n" +// Race in pulse initialization. +// https://code.google.com/p/webrtc/issues/detail?id=5152 +"race:webrtc::AudioDeviceLinuxPulse::Init\n" + // rtc_unittest // https://code.google.com/p/webrtc/issues/detail?id=3911 for details. "race:rtc::AsyncInvoker::OnMessage\n"