Disable flaky TestVp9Impl.EncodeDecode for iOS.

Bot outputs this:

  Crashed during TestVp9Impl.EncodeDecode, resuming...

TBR=sprang@webrtc.org
NOTRY=True
BUG=webrtc:7057

Review-Url: https://codereview.webrtc.org/2779843005
Cr-Commit-Position: refs/heads/master@{#17438}
This commit is contained in:
aleloi
2017-03-29 03:33:18 -07:00
committed by Commit bot
parent 326263a678
commit ee99f86f00

View File

@ -29,7 +29,12 @@ class TestVp9Impl : public VideoCodecTest {
} }
}; };
// Disabled on ios as flake, see https://crbug.com/webrtc/7057
#if defined(WEBRTC_IOS)
TEST_F(TestVp9Impl, DISABLED_EncodeDecode) {
#else
TEST_F(TestVp9Impl, EncodeDecode) { TEST_F(TestVp9Impl, EncodeDecode) {
#endif
EXPECT_EQ(WEBRTC_VIDEO_CODEC_OK, EXPECT_EQ(WEBRTC_VIDEO_CODEC_OK,
encoder_->Encode(*input_frame_, nullptr, nullptr)); encoder_->Encode(*input_frame_, nullptr, nullptr));
EncodedImage encoded_frame; EncodedImage encoded_frame;