]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
quiche: fix version for skip due to flakiness
authorStefan Eissing <stefan@eissing.org>
Wed, 10 Dec 2025 15:07:59 +0000 (16:07 +0100)
committerViktor Szakats <commit@vsz.me>
Wed, 10 Dec 2025 17:07:51 +0000 (18:07 +0100)
0.24.6 is the quiche version without the fix for proper handling fo
RESET streams. Require a verion higher than that to run test_05_02.

Follow-up to 14478429e71ef0eee6d12b73113e9ff8e3ae9e75 #19916

Closes #19921

tests/http/test_05_errors.py

index 5fada150059308e56e09811dd9a1ff5740f9f3f9..89a8acdebef3028574cbc36ce218a647c9a776a2 100644 (file)
@@ -61,7 +61,7 @@ class TestErrors:
         if proto == 'h3' and env.curl_uses_ossl_quic():
             pytest.skip("openssl-quic is flaky in yielding proper error codes")
         if proto == 'h3' and env.curl_uses_lib('quiche') and \
-                not env.curl_lib_version_at_least('quiche', '0.24.5'):
+                not env.curl_lib_version_at_least('quiche', '0.24.7'):
             pytest.skip("quiche issue #2277 not fixed")
         count = 20
         curl = CurlClient(env=env)