summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-08 04:48:45 +0000
committerbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-08 04:48:45 +0000
commit9f9de95d71f012793638723d9a4f0c53fb4461dc (patch)
tree30370d5c5f61d67e06604fb23818c5fe678c9176 /build
parentfeb8cf75c7a6765114de5c21055ab1ca87546ce3 (diff)
downloadchromium_src-9f9de95d71f012793638723d9a4f0c53fb4461dc.zip
chromium_src-9f9de95d71f012793638723d9a4f0c53fb4461dc.tar.gz
chromium_src-9f9de95d71f012793638723d9a4f0c53fb4461dc.tar.bz2
Fix pexpect index for android test runner.
Following https://chromiumcodereview.appspot.com/10310046/ The index for pexpect.TIMEOUT is wrong. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10545055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141168 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/android/test_package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/test_package.py b/build/android/test_package.py
index b460c91..2d07de4 100644
--- a/build/android/test_package.py
+++ b/build/android/test_package.py
@@ -172,7 +172,7 @@ class TestPackage(object):
p.before)]
if found >= 3:
# The test bailed out (i.e., didn't print OK or FAIL).
- if found == 3: # pexpect.TIMEOUT
+ if found == 4: # pexpect.TIMEOUT
logging.error('Test terminated after %d second timeout.',
self.timeout)
timed_out = True