From 569105361286fb39a18fd9f212b4d2c15a4f3e4d Mon Sep 17 00:00:00 2001 From: Markus Handell Date: Sat, 10 Apr 2021 11:23:14 +0000 Subject: [PATCH] IceStatesReachCompletionWithRemoteHostname: disable on Linux. This test flakes due to the expectation at http://shortn/_XxN4cgzMLD. Bug: webrtc:12590 Change-Id: Id75ecd4f12cd6f9af86aeb2213fd3cb39aecb6d5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/214920 Reviewed-by: Harald Alvestrand Commit-Queue: Markus Handell Cr-Commit-Position: refs/heads/master@{#33684} --- pc/peer_connection_integrationtest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc/peer_connection_integrationtest.cc b/pc/peer_connection_integrationtest.cc index 76cfb48e00..b2401022c4 100644 --- a/pc/peer_connection_integrationtest.cc +++ b/pc/peer_connection_integrationtest.cc @@ -1866,8 +1866,8 @@ constexpr int kOnlyLocalPorts = cricket::PORTALLOCATOR_DISABLE_STUN | // Use a mock resolver to resolve the hostname back to the original IP on both // sides and check that the ICE connection connects. -// TODO(bugs.webrtc.org/12590): Flaky on Windows. -#if defined(WEBRTC_WIN) +// TODO(bugs.webrtc.org/12590): Flaky on Windows and on Linux MSAN. +#if defined(WEBRTC_WIN) || defined(WEBRTC_LINUX) #define MAYBE_IceStatesReachCompletionWithRemoteHostname \ DISABLED_IceStatesReachCompletionWithRemoteHostname #else