wolfssl, use master again in CI

- with the shared session update fix landed in master, it
  is time to use that in our CI again
This commit is contained in:
Stefan Eissing 2023-08-30 11:51:17 +02:00
parent 49664d6afc
commit 40f3ee0db3
2 changed files with 2 additions and 5 deletions

View File

@ -51,7 +51,7 @@ env:
ngtcp2-version: v0.18.0
nghttp2-version: v1.55.1
gnutls-version: 3.8.0
wolfssl-version: v5.6.3-stable
wolfssl-version: master
mod_h2-version: v2.0.21
jobs:

View File

@ -376,10 +376,7 @@ class TestDownload:
if not client.exists():
pytest.skip(f'example client not built: {client.name}')
r = client.run(args=[url])
if env.curl_uses_lib('wolfssl'):
assert r.exit_code != 0, f'unexpected success for wolfSSL session share'
else:
r.check_exit_code(0)
r.check_exit_code(0)
def check_downloads(self, client, srcfile: str, count: int,
complete: bool = True):