]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
wolfssl, use master again in CI
authorStefan Eissing <stefan@eissing.org>
Wed, 30 Aug 2023 09:51:17 +0000 (11:51 +0200)
committerStefan Eissing <stefan@eissing.org>
Fri, 1 Sep 2023 09:43:55 +0000 (11:43 +0200)
- with the shared session update fix landed in master, it
  is time to use that in our CI again

.github/workflows/ngtcp2-linux.yml
tests/http/test_02_download.py

index 8635a8c6867f46357d6599c5aa9a2d9a949d1002..bf940929ae360aa4c4f764b73d21c45e9eea699f 100644 (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:
index 555f43a545ceb9653f78638a402039909c26f592..5d4d22230c25810b067c6358e5dcee22a6753461 100644 (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):