Increase run-time for full stack test for the rtt to be added reliably to the delay measurement.

BUG=2592
R=holmer@google.com, phoglund@webrtc.org, stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/3719004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5146 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
asapersson@webrtc.org 2013-11-21 07:45:08 +00:00
parent 425e1d0fb9
commit 54a05518e2
2 changed files with 3 additions and 4 deletions

View File

@ -49,9 +49,8 @@
#undef RGB
#define RGB(r,g,b) r|g<<8|b<<16
enum {
kAutoTestSleepTimeMs = 5000
};
enum { kAutoTestSleepTimeMs = 5000 };
enum { kAutoTestFullStackSleepTimeMs = 20000 };
struct AutoTestSize {
unsigned int width;

View File

@ -218,7 +218,7 @@ void TestFullStack(const TbInterfaces& interfaces,
decode_filter));
// Send video.
EXPECT_EQ(0, base_interface->StartSend(video_channel));
AutoTestSleep(kAutoTestSleepTimeMs);
AutoTestSleep(kAutoTestFullStackSleepTimeMs);
ViETest::Log("Done!");