Home | History | Annotate | Download | only in tools

Lines Matching refs:exit_code

324   def __init__(self, exit_code, timed_out, stdout, stderr):
325 self.exit_code = exit_code
355 return output.exit_code != 0
417 return 0x80000000 & self.output.exit_code and not (0x3FFFFF00 & self.output.exit_code)
419 # Timed out tests will have exit_code -signal.SIGTERM.
422 return self.output.exit_code < 0 and \
423 self.output.exit_code != -signal.SIGABRT
486 exit_code = None
488 while exit_code is None:
492 exit_code = process.wait()
495 exit_code = process.poll()
500 return (process, exit_code, timed_out)
526 (process, exit_code, timed_out) = RunProcess(
539 return CommandOutput(exit_code, timed_out, output, errors)
543 (process, exit_code, timed_out) = RunProcess(
548 return CommandOutput(exit_code, False, "", "")
713 return output.exit_code == 0