diff --git a/webrtc/video_engine/test/auto_test/automated/vie_standard_integration_test.cc b/webrtc/video_engine/test/auto_test/automated/vie_standard_integration_test.cc index 1bcc7c532b..e0018f7fea 100644 --- a/webrtc/video_engine/test/auto_test/automated/vie_standard_integration_test.cc +++ b/webrtc/video_engine/test/auto_test/automated/vie_standard_integration_test.cc @@ -59,7 +59,13 @@ TEST_F(ViEStandardIntegrationTest, RunsRenderTestWithoutErrors) { tests_->ViERenderStandardTest(); } -TEST_F(ViEStandardIntegrationTest, RunsRtpRtcpTestWithoutErrors) { +// Fails on Mac, see https://code.google.com/p/webrtc/issues/detail?id=1790 +#if defined(WEBRTC_MAC) +#define MAYBE_RunsRtpRtcpTestWithoutErrors DISABLED_RunsRtpRtcpTestWithoutErrors +#else +#define MAYBE_RunsRtpRtcpTestWithoutErrors RunsRtpRtcpTestWithoutErrors +#endif +TEST_F(ViEStandardIntegrationTest, MAYBE_RunsRtpRtcpTestWithoutErrors) { tests_->ViERtpRtcpStandardTest(); }