From 06319b7830437646d694d6c1934d7e79e1a9fb50 Mon Sep 17 00:00:00 2001 From: Alex Loiko Date: Wed, 27 Sep 2017 11:55:16 +0200 Subject: [PATCH] Disable RampUpTest.UpDownUpTransportSequenceNumberPacketLoss on Mac. Test is flaky. Failures look like this: ../../call/rampup_tests.cc:379: Failure Value of: Wait() Actual: false Expected: true TBR=stefan@webrtc.org NOTRY=True Bug: webrtc:7919 Change-Id: I99d468e2af49baf2bd6f6c6aee2c18f99c24bac7 Reviewed-on: https://webrtc-review.googlesource.com/3980 Commit-Queue: Alex Loiko Reviewed-by: Alex Loiko Cr-Commit-Position: refs/heads/master@{#19991} --- call/rampup_tests.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call/rampup_tests.cc b/call/rampup_tests.cc index 21fd361c4c..0ade0008c1 100644 --- a/call/rampup_tests.cc +++ b/call/rampup_tests.cc @@ -585,7 +585,7 @@ TEST_F(RampUpTest, UpDownUpTransportSequenceNumberRtx) { // TODO(holmer): Tests which don't report perf stats should be moved to a // different executable since they per definition are not perf tests. // Crashes on Linux only, see webrtc:7919. -#if defined(WEBRTC_LINUX) +#if defined(WEBRTC_LINUX) || defined(WEBRTC_MAC) #define MAYBE_UpDownUpTransportSequenceNumberPacketLoss \ DISABLED_UpDownUpTransportSequenceNumberPacketLoss #else