diff options
author | Craig Tiller <ctiller@google.com> | 2015-05-12 09:43:54 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-05-12 09:43:54 -0700 |
commit | 59b195f8645e85fd656881ef8b2cb0c03f8738b2 (patch) | |
tree | 0b9e168afe4cdc3e79b4f47c1b2951122457ec47 /tools/run_tests | |
parent | 4749c8bf6be01bde03de81595106262674bd648e (diff) |
Make runtests print logs on timed out tests
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/jobset.py | 4 |
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 |