From 27e884cf479ef7e2f5ca15e6edbafd123d979442 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 28 May 2014 03:34:04 +0000 Subject: [PATCH] Disable MouseCursorMonitorTest due to flake on Windows. TBR=sergeyu BUG=3408 Review URL: https://webrtc-codereview.appspot.com/15589005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6256 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../modules/desktop_capture/mouse_cursor_monitor_unittest.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webrtc/modules/desktop_capture/mouse_cursor_monitor_unittest.cc b/webrtc/modules/desktop_capture/mouse_cursor_monitor_unittest.cc index 7849005f9..5e24d45db 100644 --- a/webrtc/modules/desktop_capture/mouse_cursor_monitor_unittest.cc +++ b/webrtc/modules/desktop_capture/mouse_cursor_monitor_unittest.cc @@ -50,7 +50,10 @@ class MouseCursorMonitorTest : public testing::Test, // tests. Figure out how to do that without breaking other tests in // modules_unittests and enable these tests on Mac. // https://code.google.com/p/webrtc/issues/detail?id=2532 -#if !defined(WEBRTC_MAC) +// +// Disabled on Windows due to flake, see: +// https://code.google.com/p/webrtc/issues/detail?id=3408 +#if !defined(WEBRTC_MAC) && !defined(WEBRTC_WIN) #define MAYBE(x) x #else #define MAYBE(x) DISABLED_##x