From 7703b27c423d78139f95e5a2b872358142fc76e4 Mon Sep 17 00:00:00 2001 From: philipel Date: Mon, 28 Nov 2016 16:23:12 +0100 Subject: [PATCH] Disable PeerConnectionEndToEndTest.CallWithLegacySdp on Asan bots. BUG=webrtc:6765 TBR=mflodman@webrtc.org Review URL: https://codereview.webrtc.org/2534783003 . Cr-Commit-Position: refs/heads/master@{#15271} --- webrtc/api/peerconnectionendtoend_unittest.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webrtc/api/peerconnectionendtoend_unittest.cc b/webrtc/api/peerconnectionendtoend_unittest.cc index 80485e3f82..fedadd9e12 100644 --- a/webrtc/api/peerconnectionendtoend_unittest.cc +++ b/webrtc/api/peerconnectionendtoend_unittest.cc @@ -182,6 +182,7 @@ TEST_F(PeerConnectionEndToEndTest, Call) { } #endif // if !defined(THREAD_SANITIZER) && !defined(WEBRTC_MAC) +#if !defined(ADDRESS_SANITIZER) TEST_F(PeerConnectionEndToEndTest, CallWithLegacySdp) { FakeConstraints pc_constraints; pc_constraints.AddMandatory(MediaConstraintsInterface::kEnableDtlsSrtp, @@ -191,6 +192,7 @@ TEST_F(PeerConnectionEndToEndTest, CallWithLegacySdp) { Negotiate(); WaitForCallEstablished(); } +#endif // !defined(ADDRESS_SANITIZER) // Verifies that a DataChannel created before the negotiation can transition to // "OPEN" and transfer data.