From 7de07652ad0c58f26da78c188962704c4e25ed88 Mon Sep 17 00:00:00 2001 From: "stefan@webrtc.org" Date: Mon, 14 Nov 2011 15:16:16 +0000 Subject: [PATCH] Disables a flaky metric test. This is a duplication of issue 255008 since I wasn't able to commit that one from the computer on which it was created. BUG= TEST= Review URL: http://webrtc-codereview.appspot.com/276007 git-svn-id: http://webrtc.googlecode.com/svn/trunk@940 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../test/AutoTest/source/vie_autotest_rtp_rtcp.cc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/video_engine/main/test/AutoTest/source/vie_autotest_rtp_rtcp.cc b/src/video_engine/main/test/AutoTest/source/vie_autotest_rtp_rtcp.cc index b82a069e59..8e01fccba9 100644 --- a/src/video_engine/main/test/AutoTest/source/vie_autotest_rtp_rtcp.cc +++ b/src/video_engine/main/test/AutoTest/source/vie_autotest_rtp_rtcp.cc @@ -348,12 +348,13 @@ int ViEAutoTest::ViERtpRtcpStandardTest() sentNackBitrate); numberOfErrors += ViETest::TestError(error == 0, "ERROR: %s at line %d", __FUNCTION__, __LINE__); - - numberOfErrors += ViETest::TestError(sentTotalBitrate > 0 && - sentFecBitrate == 0 && - sentNackBitrate > 0, - "ERROR: %s at line %d", - __FUNCTION__, __LINE__); + + // TODO(holmer): Write a non-flaky verification of this API. + // numberOfErrors += ViETest::TestError(sentTotalBitrate > 0 && + // sentFecBitrate == 0 && + // sentNackBitrate > 0, + // "ERROR: %s at line %d", + // __FUNCTION__, __LINE__); error = ViE.ptrViEBase->StopReceive(tbChannel.videoChannel);