From ee99f86f00ef1e9c67af7c4b34c6f91cf1945503 Mon Sep 17 00:00:00 2001 From: aleloi Date: Wed, 29 Mar 2017 03:33:18 -0700 Subject: [PATCH] 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} --- .../video_coding/codecs/vp9/test/vp9_impl_unittest.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc b/webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc index 823543d325..bb453bd582 100644 --- a/webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc +++ b/webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc @@ -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) { +#endif EXPECT_EQ(WEBRTC_VIDEO_CODEC_OK, encoder_->Encode(*input_frame_, nullptr, nullptr)); EncodedImage encoded_frame;