From af228ee761e1ad927652566bb746684274bbc5b6 Mon Sep 17 00:00:00 2001 From: Alex Loiko Date: Thu, 22 Nov 2018 11:53:18 +0100 Subject: [PATCH] Disable flaky tests CallPerfTest.CaptureNtpTimeWithNetworkDelay on WIN. See linked bug. TBR=stefan@webrtc.org Bug: webrtc:8291 Change-Id: I0e5896a6e5bbb6979d59032d1a033f209d45918e Reviewed-on: https://webrtc-review.googlesource.com/c/111749 Reviewed-by: Alex Loiko Commit-Queue: Alex Loiko Cr-Commit-Position: refs/heads/master@{#25748} --- call/call_perf_tests.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/call/call_perf_tests.cc b/call/call_perf_tests.cc index 2f935b4eaa..72aa78c5f7 100644 --- a/call/call_perf_tests.cc +++ b/call/call_perf_tests.cc @@ -480,8 +480,8 @@ void CallPerfTest::TestCaptureNtpTime( RunBaseTest(&test); } -// Flaky tests, disabled on Mac due to webrtc:8291. -#if !(defined(WEBRTC_MAC)) +// Flaky tests, disabled on Mac and Windows due to webrtc:8291. +#if !(defined(WEBRTC_MAC) || defined(WEBRTC_WIN)) TEST_F(CallPerfTest, CaptureNtpTimeWithNetworkDelay) { BuiltInNetworkBehaviorConfig net_config; net_config.queue_delay_ms = 100;