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
351 return output.exit_code != 0
400 return 0x80000000 & self.output.exit_code and not (0x3FFFFF00 & self.output.exit_code)
402 # Timed out tests will have exit_code -signal.SIGTERM.
405 return self.output.exit_code < 0 and \
406 self.output.exit_code != -signal.SIGABRT
469 exit_code = None
471 while exit_code is None:
475 exit_code = process.wait()
478 exit_code = process.poll()
483 return (process, exit_code, timed_out)
501 (process, exit_code, timed_out) = RunProcess(
514 return CommandOutput(exit_code, timed_out, output, errors)
518 (process, exit_code, timed_out) = RunProcess(
523 return CommandOutput(exit_code, False, "", "")
652 return output.exit_code == 0