From 50099af75f8c312786e0a00f9d2ed6f388655c7e Mon Sep 17 00:00:00 2001 From: "wu@webrtc.org" Date: Mon, 6 Feb 2012 22:50:48 +0000 Subject: [PATCH] Disable flaky test VideoProcessorIntegrationTest.Process5PercentPacketLoss. BUG=262 TBR=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/379014 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1614 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../video_coding/codecs/test/videoprocessor_integrationtest.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc b/src/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc index d6f1f4f92..81a6e3840 100644 --- a/src/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc +++ b/src/modules/video_coding/codecs/test/videoprocessor_integrationtest.cc @@ -141,7 +141,8 @@ TEST_F(VideoProcessorIntegrationTest, ProcessZeroPacketLoss) { } // Run with 5% packet loss. Quality should be a bit lower. -TEST_F(VideoProcessorIntegrationTest, Process5PercentPacketLoss) { +// TODO(mflodman): Reenable this once it's not flaky. +TEST_F(VideoProcessorIntegrationTest, DISABLED_Process5PercentPacketLoss) { config_.networking_config.packet_loss_probability = 0.05; double minimum_psnr = 14; double minimum_ssim = 0.3;