From 270dcb14933ff28d0ddf656d0a25fce28f26a0a4 Mon Sep 17 00:00:00 2001 From: "dkegel@google.com" Date: Tue, 21 Apr 2009 03:43:41 +0000 Subject: Hit "valgrind finishing" timeout of 60 seconds on a UI test run, so increase timeout to 600 seconds We'll reduce it back down to a smaller value once we see how long it really takes.) (This seems reasonable since the UI tests take 4600 seconds.) Review URL: http://codereview.chromium.org/87019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14087 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/valgrind/valgrind_analyze.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/valgrind') diff --git a/tools/valgrind/valgrind_analyze.py b/tools/valgrind/valgrind_analyze.py index 4ddbff8..a8e2012 100755 --- a/tools/valgrind/valgrind_analyze.py +++ b/tools/valgrind/valgrind_analyze.py @@ -190,9 +190,9 @@ class ValgrindAnalyze: self._errors = set() for file in files: - # Wait up to a minute for valgrind to finish writing. + # Wait up to ten minutes for valgrind to finish writing. f = open(file, "r") - ntries = 60 + ntries = 600 for tries in range(0, ntries): f.seek(0) if sum((1 for line in f if '' in line)) > 0: -- cgit v1.1