Searched refs:exit_code (Results 1 – 13 of 13) sorted by relevance
/curl/tests/http/ |
H A D | test_17_ssl_use.py | 112 assert r.exit_code == 0, f'{r}' 129 if r.exit_code == 0: 138 assert r.exit_code in [7, 35, 60], f'{r}' 153 assert r.exit_code == 0, f'{r}' 168 assert r.exit_code == 0, f'{r}' 238 assert r.exit_code == 0, r.dump_logs() 243 assert r.exit_code == 0, r.dump_logs() 248 assert r.exit_code != 0, r.dump_logs() 265 assert r.exit_code == 91, f'{r}' 354 assert r.exit_code == 60, f'{r}' [all …]
|
H A D | scorecard.py | 91 if r.exit_code == 0 and len(r.stats) == 1: 126 if r.exit_code != 0: 128 if r.exit_code != 0 or len(r.stats) != count: 250 if r.exit_code != 0: 252 if r.exit_code != 0 or len(r.stats) != count: 396 if r.exit_code != 0:
|
H A D | test_14_auth.py | 137 assert r.exit_code in [55, 56], f'{self.dump_logs()}'
|
H A D | test_20_websockets.py | 51 if r.exit_code == 0:
|
H A D | test_07_upload.py | 353 assert r.exit_code == 0, f'{r}' 376 assert r.exit_code == 0, r.dump_logs() 395 assert r.exit_code == 0, r.dump_logs() 549 if r.exit_code == 18: # PARTIAL_FILE is always ok
|
H A D | test_02_download.py | 480 assert r.exit_code == 0, f'{client.dump_logs()}'
|
/curl/scripts/ |
H A D | completion.pl | 146 } elsif ((my $exit_code = $? >> 8) != 0) { 147 die "curl returned $exit_code with output:\n$output";
|
/curl/tests/http/testenv/ |
H A D | httpd.py | 130 return ExecResult(args=args, exit_code=p.returncode, 151 if r.exit_code != 0: 160 if r.exit_code == 0: 163 return r.exit_code == 0 173 if r.exit_code != 0: 188 if r.exit_code != 0: 200 if r.exit_code == 0:
|
H A D | nghttpx.py | 147 if r.exit_code != 0: 170 if r.exit_code == 0: 268 if r.exit_code != 0: 283 if r.exit_code == 0:
|
H A D | vsftpd.py | 133 if r.exit_code != 0: 148 if r.exit_code == 0:
|
H A D | caddy.py | 114 if r.exit_code != 0: 127 if r.exit_code == 0:
|
H A D | curl.py | 186 def __init__(self, args: List[str], exit_code: int, 194 self._exit_code = exit_code 233 def exit_code(self) -> int: member in ExecResult 320 assert self.exit_code == 0, f'expected exit code {code}, '\ 323 assert self.exit_code != 0, f'expected exit code {code}, '\ 326 assert self.exit_code == code, f'expected exit code {code}, '\ 815 return ExecResult(args=args, exit_code=exitcode, exception=exception, 835 if r.exit_code == 0 and with_headers: 894 r = ExecResult(args=[], exit_code=0, stdout=[], stderr=[])
|
H A D | client.py | 110 return ExecResult(args=myargs, exit_code=exitcode, exception=exception,
|
Completed in 23 milliseconds