Disable flaky test EndToEndTest.TestFlexfecRtpStatePreservation on linux for now.

BUG=webrtc:7737

Review-Url: https://codereview.webrtc.org/2917673002
Cr-Commit-Position: refs/heads/master@{#18355}
This commit is contained in:
brandtr 2017-05-31 07:46:56 -07:00 committed by Commit Bot
parent be3e539600
commit eb80679c79

View File

@ -4145,7 +4145,16 @@ TEST_F(EndToEndTest, MAYBE_PictureIdStateRetainedAfterReinitingVp8) {
TestPictureIdStatePreservation(encoder.get());
}
TEST_F(EndToEndTest, TestFlexfecRtpStatePreservation) {
// This test is flaky on linux_memcheck. Disable on all linux bots until
// flakyness has been fixed.
// https://bugs.chromium.org/p/webrtc/issues/detail?id=7737
#if defined(WEBRTC_LINUX)
#define MAYBE_TestFlexfecRtpStatePreservation \
DISABLED_TestFlexfecRtpStatePreservation
#else
#define MAYBE_TestFlexfecRtpStatePreservation TestFlexfecRtpStatePreservation
#endif
TEST_F(EndToEndTest, MAYBE_TestFlexfecRtpStatePreservation) {
class RtpSequenceObserver : public test::RtpRtcpObserver {
public:
RtpSequenceObserver()