Lines Matching full:exit_code
332 def __init__(self, exit_code, timed_out, stdout, stderr):
333 self.exit_code = exit_code
363 return output.exit_code != 0
428 return 0x80000000 & self.output.exit_code and not (0x3FFFFF00 & self.output.exit_code)
430 # Timed out tests will have exit_code -signal.SIGTERM.
433 return self.output.exit_code < 0 and \
434 self.output.exit_code != -signal.SIGABRT
497 exit_code = None
499 while exit_code is None:
503 exit_code = process.wait()
506 exit_code = process.poll()
511 return (process, exit_code, timed_out)
537 (process, exit_code, timed_out) = RunProcess(
550 return CommandOutput(exit_code, timed_out, output, errors)
554 (process, exit_code, timed_out) = RunProcess(
559 return CommandOutput(exit_code, False, "", "")
745 return output.exit_code == 0