From 2f3c5e6752d355869be6489c07e0154109d4aedb Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Mon, 24 May 2021 14:50:53 +0200 Subject: [PATCH] Skip WindowCapturerTest.Capture on macOS. Bug: webrtc:12801 Change-Id: I543313f3c304b694cc50bff5a6344f1c6d944c8d Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/219635 Reviewed-by: Artem Titov Reviewed-by: Joe Downing Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#34103} --- modules/desktop_capture/window_capturer_unittest.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/desktop_capture/window_capturer_unittest.cc b/modules/desktop_capture/window_capturer_unittest.cc index 8a611e760a..3989c28f16 100644 --- a/modules/desktop_capture/window_capturer_unittest.cc +++ b/modules/desktop_capture/window_capturer_unittest.cc @@ -54,8 +54,9 @@ TEST_F(WindowCapturerTest, Enumerate) { } } -// Flaky on Linux. See: crbug.com/webrtc/7830 -#if defined(WEBRTC_LINUX) +// Flaky on Linux. See: crbug.com/webrtc/7830. +// Failing on macOS 11: See bugs.webrtc.org/12801 +#if defined(WEBRTC_LINUX) || defined(WEBRTC_MAC) #define MAYBE_Capture DISABLED_Capture #else #define MAYBE_Capture Capture