mirror of
https://github.com/curl/curl.git
synced 2026-06-02 14:54:37 +03:00
pytest: re-enable test test_05_01 and test_05_02 for quiche 0.29.0+
The upstream issue seems to have been fixed or mitigated in quiche v0.29.0. Though the original upstream report and patch remain open at the time of writing this. Ref: https://github.com/cloudflare/quiche/issues/2277 Ref: https://github.com/cloudflare/quiche/pull/2278 Follow-up to252b82f693#21730 Follow-up to91b422d356#20952 Follow-up to14478429e7#19916 Closes #21784
This commit is contained in:
parent
a5fcaa8553
commit
cdb266738b
1 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ class TestErrors:
|
|||
@pytest.mark.parametrize("proto", Env.http_protos())
|
||||
def test_05_01_partial_1(self, env: Env, httpd, nghttpx, proto):
|
||||
if proto == 'h3' and env.curl_uses_lib('quiche') and \
|
||||
not env.curl_lib_version_at_least('quiche', '0.29.1'):
|
||||
not env.curl_lib_version_at_least('quiche', '0.29.0'):
|
||||
pytest.skip("quiche issue #2277 not fixed")
|
||||
count = 1
|
||||
curl = CurlClient(env=env)
|
||||
|
|
@ -64,7 +64,7 @@ class TestErrors:
|
|||
@pytest.mark.parametrize("proto", Env.http_mplx_protos())
|
||||
def test_05_02_partial_20(self, env: Env, httpd, nghttpx, proto):
|
||||
if proto == 'h3' and env.curl_uses_lib('quiche') and \
|
||||
not env.curl_lib_version_at_least('quiche', '0.29.1'):
|
||||
not env.curl_lib_version_at_least('quiche', '0.29.0'):
|
||||
pytest.skip("quiche issue #2277 not fixed")
|
||||
count = 20
|
||||
curl = CurlClient(env=env)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue