From: Daniel Stenberg Date: Tue, 10 Sep 2024 12:46:40 +0000 (+0200) Subject: runtests: accecpt 'quictls' as OpenSSL compatible X-Git-Tag: curl-8_10_1~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=31be4d5bf0cfd35cc3930ca8728eae28e9640cb5;p=thirdparty%2Fcurl.git runtests: accecpt 'quictls' as OpenSSL compatible And set the "OpenSSL" feature. Follow-up to 86d4a4124e275f355320d Closes #14850 --- 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;