Disable ViEStandardIntegrationTest.RunsRtpRtcpTestWithoutErrors test.

BUG=1790
TEST=Just local compilation.
R=mflodman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1654004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@4217 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2013-06-12 08:28:09 +00:00
parent 18275a8429
commit 7124dd8561

View File

@ -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();
}