Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Unified Diff: webrtc/p2p/base/stunport_unittest.cc

Issue 2779913002: Disable possibly flaky AudioCodingModuleTest.TestPacketLossStereo for Linux. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/p2p/base/stunport_unittest.cc
diff --git a/webrtc/p2p/base/stunport_unittest.cc b/webrtc/p2p/base/stunport_unittest.cc
index f8903d3a2fd2f60e1ef396681fc5094059f67478..52bb3e84a848dee81531609247941d09f390d705 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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698