Initialize the command and set a large enough timeout required for runs through the iOS Simulator.
(self,
shell,
args=None,
cmd_prefix=None,
timeout=120,
env=None,
verbose=False,
test_case=None,
handle_sigterm=False,
log_process_stats=False)
| 241 | class IOSCommand(BaseCommand): |
| 242 | |
| 243 | def __init__(self, |
| 244 | shell, |
| 245 | args=None, |
| 246 | cmd_prefix=None, |
| 247 | timeout=120, |
| 248 | env=None, |
| 249 | verbose=False, |
| 250 | test_case=None, |
| 251 | handle_sigterm=False, |
| 252 | log_process_stats=False): |
| 253 | """Initialize the command and set a large enough timeout required for runs |
| 254 | through the iOS Simulator. |
| 255 | """ |
| 256 | super(IOSCommand, self).__init__( |
| 257 | shell, |
| 258 | args=args, |
| 259 | cmd_prefix=cmd_prefix, |
| 260 | timeout=timeout, |
| 261 | env=env, |
| 262 | verbose=verbose, |
| 263 | handle_sigterm=handle_sigterm, |
| 264 | log_process_stats=log_process_stats) |
| 265 | |
| 266 | def _result_overrides(self, process): |
| 267 | # TODO(crbug.com/1445694): if iossim returns with code 65, force a |