From acfb0177754cbf517a43dcae372e1672b141c3b9 Mon Sep 17 00:00:00 2001 From: zhihuang Date: Tue, 28 Mar 2017 13:45:18 -0700 Subject: [PATCH] Disable the ORTC integration tests on TSan. BUG=webrtc:7366 Review-Url: https://codereview.webrtc.org/2767123002 Cr-Commit-Position: refs/heads/master@{#17431} --- webrtc/ortc/ortcfactory_integrationtest.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webrtc/ortc/ortcfactory_integrationtest.cc b/webrtc/ortc/ortcfactory_integrationtest.cc index 0f782b2b32..37c787fdd4 100644 --- a/webrtc/ortc/ortcfactory_integrationtest.cc +++ b/webrtc/ortc/ortcfactory_integrationtest.cc @@ -346,6 +346,10 @@ class OrtcFactoryIntegrationTest : public testing::Test { int rendered_video_frames2_ = 0; }; +// Disable for TSan v2, see +// https://bugs.chromium.org/p/webrtc/issues/detail?id=7366 for details. +#if !defined(THREAD_SANITIZER) + // Very basic end-to-end test with a single pair of audio RTP sender and // receiver. // @@ -675,4 +679,6 @@ TEST_F(OrtcFactoryIntegrationTest, // TODO(deadbeef): End-to-end test for simulcast, once that's supported by this // API. +#endif // if !defined(THREAD_SANITIZER) + } // namespace webrtc