From: Marcel Raad Date: Sat, 1 Aug 2020 16:00:50 +0000 (+0200) Subject: runtests.pl: treat LibreSSL and BoringSSL as OpenSSL X-Git-Tag: curl-7_72_0~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5c2728eb42bc49533bb3a7abd00071549fb377fb;p=thirdparty%2Fcurl.git runtests.pl: treat LibreSSL and BoringSSL as OpenSSL This makes the tests that require the OpenSSL feature also run for those two compatible libraries. Closes https://github.com/curl/curl/pull/5762 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index c794ac55ad..cc70a10115 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2817,7 +2817,7 @@ sub setupfeatures { $feature{"NSS"} = $has_nss; $feature{"NTLM"} = $has_ntlm; $feature{"NTLM_WB"} = $has_ntlm_wb; - $feature{"OpenSSL"} = $has_openssl; + $feature{"OpenSSL"} = $has_openssl || $has_libressl || $has_boringssl; $feature{"PSL"} = $has_psl; $feature{"Schannel"} = $has_winssl; # alias $feature{"sectransp"} = $has_darwinssl;