mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:03:39 +03:00
http3/ngtcp2: shorten handshake, trace cleanup
- shorten handshake timing by delayed x509 store load (OpenSSL) as we do for HTTP/2 - cleanup of trace output, align with HTTP/2 output Closes #11609
This commit is contained in:
parent
95ca3c53d3
commit
199fb4b94a
4 changed files with 79 additions and 92 deletions
|
|
@ -65,7 +65,7 @@ class TestErrors:
|
|||
r.check_exit_code(False)
|
||||
invalid_stats = []
|
||||
for idx, s in enumerate(r.stats):
|
||||
if 'exitcode' not in s or s['exitcode'] not in [18, 56, 92]:
|
||||
if 'exitcode' not in s or s['exitcode'] not in [18, 56, 92, 95]:
|
||||
invalid_stats.append(f'request {idx} exit with {s["exitcode"]}')
|
||||
assert len(invalid_stats) == 0, f'failed: {invalid_stats}'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue