From 8f88f20af239805155f1540d7da53e106dd195d7 Mon Sep 17 00:00:00 2001 From: "jiayl@webrtc.org" Date: Wed, 16 Apr 2014 17:14:21 +0000 Subject: [PATCH] Expand the test max wait time from 1000ms to 2000ms. The createOffer/createAnswer methods sometimes times out due to slow identity generation under memcheck. BUG=2838 R=wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12089004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5920 4adac7df-926f-26a2-2b94-8c16560cd09d --- talk/app/webrtc/peerconnection_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/talk/app/webrtc/peerconnection_unittest.cc b/talk/app/webrtc/peerconnection_unittest.cc index 4bfe083908..bfee48cc9a 100644 --- a/talk/app/webrtc/peerconnection_unittest.cc +++ b/talk/app/webrtc/peerconnection_unittest.cc @@ -83,7 +83,7 @@ using webrtc::PeerConnectionInterface; using webrtc::SessionDescriptionInterface; using webrtc::StreamCollectionInterface; -static const int kMaxWaitMs = 1000; +static const int kMaxWaitMs = 2000; static const int kMaxWaitForStatsMs = 3000; static const int kMaxWaitForFramesMs = 5000; static const int kEndAudioFrameCount = 3;