Skip to content
Snippets Groups Projects
Commit d0ffe143 authored by Craig Tiller's avatar Craig Tiller
Browse files

Include pid in failures

parent eb68a800
No related branches found
No related tags found
No related merge requests found
...@@ -209,8 +209,9 @@ class Job(object): ...@@ -209,8 +209,9 @@ class Job(object):
self._state = _FAILURE self._state = _FAILURE
self._tempfile.seek(0) self._tempfile.seek(0)
stdout = self._tempfile.read() stdout = self._tempfile.read()
message('FAILED', '%s [ret=%d]' % ( message('FAILED', '%s [ret=%d, pid=%d]' % (
self._spec.shortname, self._process.returncode), stdout, do_newline=True) self._spec.shortname, self._process.returncode, self._process.pid),
stdout, do_newline=True)
else: else:
self._state = _SUCCESS self._state = _SUCCESS
message('PASSED', '%s [time=%.1fsec]' % (self._spec.shortname, elapsed), message('PASSED', '%s [time=%.1fsec]' % (self._spec.shortname, elapsed),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment