Disabled RestartingSendStreamPreservesRtpStatesWithRtx on Mac due to flakiness.

I have not seen it crop up on other platforms, so limiting the disable to just Mac for now.

See, for example: https://build.chromium.org/p/client.webrtc/builders/Mac64%20Debug/builds/7339/steps/video_engine_tests/logs/stdio

BUG=webrtc:4332

Review-Url: https://codereview.webrtc.org/2027573002
Cr-Commit-Position: refs/heads/master@{#12973}
This commit is contained in:
ossu 2016-05-31 05:17:32 -07:00 committed by Commit bot
parent 938c5ddf0b
commit 799467d753

View File

@ -3080,7 +3080,14 @@ TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpState) {
TestRtpStatePreservation(false);
}
TEST_F(EndToEndTest, RestartingSendStreamPreservesRtpStatesWithRtx) {
#if defined(WEBRTC_MAC)
#define MAYBE_RestartingSendStreamPreservesRtpStatesWithRtx \
DISABLED_RestartingSendStreamPreservesRtpStatesWithRtx
#else
#define MAYBE_RestartingSendStreamPreservesRtpStatesWithRtx \
RestartingSendStreamPreservesRtpStatesWithRtx
#endif
TEST_F(EndToEndTest, MAYBE_RestartingSendStreamPreservesRtpStatesWithRtx) {
TestRtpStatePreservation(true);
}