From f2c765028fcf91c4f7bf15eeb0249d525e13ac8f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 1 Jan 2026 23:19:07 +0100 Subject: [PATCH] pytest: enable OCSP test 17_08 for LibreSSL Before: 735 passed, 115 skipped After: 738 passed, 112 skipped Closes #20149 --- tests/http/test_17_ssl_use.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/http/test_17_ssl_use.py b/tests/http/test_17_ssl_use.py index 85c43d568e..6618a5d713 100644 --- a/tests/http/test_17_ssl_use.py +++ b/tests/http/test_17_ssl_use.py @@ -293,8 +293,9 @@ class TestSSLUse: @pytest.mark.parametrize("proto", Env.http_protos()) def test_17_08_cert_status(self, env: Env, proto, httpd, nghttpx): if not env.curl_uses_lib('openssl') and \ - not env.curl_uses_lib('gnutls') and \ - not env.curl_uses_lib('quictls'): + not env.curl_uses_lib('quictls') and \ + not env.curl_uses_lib('libressl') and \ + not env.curl_uses_lib('gnutls'): pytest.skip("TLS library does not support --cert-status") curl = CurlClient(env=env) domain = 'localhost'