From d49d3873ce38668851cce8bd2c64d64b54664ec3 Mon Sep 17 00:00:00 2001 From: aleloi Date: Tue, 28 Mar 2017 03:00:07 -0700 Subject: [PATCH] Disable possibly flaky AudioCodingModuleTest.TestPacketLossStereo for Linux. It failed after unrelated https://codereview.webrtc.org/2752233002. TBR=tommi@webrtc.org NOTRY=true BUG=webrtc:7416 Review-Url: https://codereview.webrtc.org/2779913002 Cr-Commit-Position: refs/heads/master@{#17412} --- webrtc/p2p/base/stunport_unittest.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/webrtc/p2p/base/stunport_unittest.cc b/webrtc/p2p/base/stunport_unittest.cc index f8903d3a2f..52bb3e84a8 100644 --- a/webrtc/p2p/base/stunport_unittest.cc +++ b/webrtc/p2p/base/stunport_unittest.cc @@ -218,7 +218,13 @@ TEST_F(StunPortTest, TestPrepareAddressFail) { } // Test that we can get an address from a STUN server specified by a hostname. -TEST_F(StunPortTest, TestPrepareAddressHostname) { +// Crashes on Linux, see webrtc:7416 +#if defined(WEBRTC_LINUX) +#define MAYBE_TestPrepareAddressHostname DISABLED_TestPrepareAddressHostname +#else +#define MAYBE_TestPrepareAddressHostname TestPrepareAddressHostname +#endif +TEST_F(StunPortTest, MAYBE_TestPrepareAddressHostname) { CreateStunPort(kStunHostnameAddr); PrepareAddress(); EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);