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:
Stefan Eissing 2023-08-07 11:42:23 +02:00 committed by Daniel Stenberg
parent 95ca3c53d3
commit 199fb4b94a
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 79 additions and 92 deletions

View file

@ -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}'