Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(946)

Unified Diff: build/android/test_package.py

Issue 10545055: Fix pexpect index for android test runner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/test_package.py
diff --git a/build/android/test_package.py b/build/android/test_package.py
index b460c91ad1f9cfdd2cb111d749da4a732f3d6b2d..2d07de496e73bc880caec46ceb56434af244cd44 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698