From 31be4d5bf0cfd35cc3930ca8728eae28e9640cb5 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 10 Sep 2024 14:46:40 +0200 Subject: [PATCH] runtests: accecpt 'quictls' as OpenSSL compatible And set the "OpenSSL" feature. Follow-up to 86d4a4124e275f355320d Closes #14850 --- tests/runtests.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/runtests.pl b/tests/runtests.pl index 07802ad376..60482743d6 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -576,6 +576,11 @@ sub checksystemfeatures { $feature{"OpenSSL"} = 1; $feature{"SSLpinning"} = 1; } + elsif ($libcurl =~ /\squictls\b/i) { + # OpenSSL compatible API + $feature{"OpenSSL"} = 1; + $feature{"SSLpinning"} = 1; + } elsif ($libcurl =~ /\smbedTLS\b/i) { $feature{"mbedtls"} = 1; $feature{"SSLpinning"} = 1; -- 2.47.3