aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-12 09:43:54 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-05-12 09:43:54 -0700
commit59b195f8645e85fd656881ef8b2cb0c03f8738b2 (patch)
tree0b9e168afe4cdc3e79b4f47c1b2951122457ec47
parent4749c8bf6be01bde03de81595106262674bd648e (diff)
Make runtests print logs on timed out tests
-rwxr-xr-xtools/run_tests/jobset.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/jobset.py b/tools/run_tests/jobset.py
index b8b4cf0001..286b81dc3e 100755
--- a/tools/run_tests/jobset.py
+++ b/tools/run_tests/jobset.py
@@ -212,7 +212,9 @@ class Job(object):
if self._bin_hash:
update_cache.finished(self._spec.identity(), self._bin_hash)
elif self._state == _RUNNING and time.time() - self._start > 300:
- message('TIMEOUT', self._spec.shortname, do_newline=True)
+ self._tempfile.seek(0)
+ stdout = self._tempfile.read()
+ message('TIMEOUT', self._spec.shortname, stdout, do_newline=True)
self.kill()
return self._state