Index: build/android/pylib/perf/test_runner.py |
diff --git a/build/android/pylib/perf/test_runner.py b/build/android/pylib/perf/test_runner.py |
index d9227a5ed5a8a5ce6eaf8e028a1a85076af7cc5c..da66d070dd375370b9df8e2c01d7e030d1b2278e 100644 |
--- a/build/android/pylib/perf/test_runner.py |
+++ b/build/android/pylib/perf/test_runner.py |
@@ -250,9 +250,10 @@ class TestRunner(base_test_runner.BaseTestRunner): |
logging.info('%s : %s', test_name, cmd) |
start_time = datetime.datetime.now() |
- timeout = 5400 |
+ timeout = self._tests['steps'][test_name].get('timeout', 5400) |
if self._options.no_timeout: |
timeout = None |
+ logging.info('Timeout for %s test: %s', test_name, timeout) |
full_cmd = cmd |
if self._options.dry_run: |
full_cmd = 'echo %s' % cmd |