From 3532ee2f0abede8c887ffcf16fdbb1a4263e0349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20H=C3=B6glund?= Date: Mon, 27 Jun 2016 18:17:05 +0200 Subject: [PATCH] Disable flaky ProcessNoLossChangeFrameRateFrameDropVP9 on Android BUG=webrtc:6057 R=pbos@webrtc.org Review URL: https://codereview.webrtc.org/2100863002 . Cr-Commit-Position: refs/heads/master@{#13298} --- .../codecs/test/videoprocessor_integrationtest.cc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc b/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc index 706e57a0e5..b9c78d6192 100644 --- a/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc @@ -707,8 +707,17 @@ TEST_F(VideoProcessorIntegrationTest, ProcessNoLossChangeBitRateVP9) { // for the rate control metrics can be lower. One key frame (first frame only). // Note: quality after update should be higher but we currently compute quality // metrics averaged over whole sequence run. + +#if defined(OS_ANDROID) +// Flaky on Android: https://bugs.chromium.org/p/webrtc/issues/detail?id=6057. +#define MAYBE_ProcessNoLossChangeFrameRateFrameDropVP9 \ + DISABLED_ProcessNoLossChangeFrameRateFrameDropVP9 +#else +#define MAYBE_ProcessNoLossChangeFrameRateFrameDropVP9 \ + ProcessNoLossChangeFrameRateFrameDropVP9 +#endif TEST_F(VideoProcessorIntegrationTest, - ProcessNoLossChangeFrameRateFrameDropVP9) { + MAYBE_ProcessNoLossChangeFrameRateFrameDropVP9) { config_.networking_config.packet_loss_probability = 0; // Bitrate and frame rate profile. RateProfile rate_profile;