From 5c2728eb42bc49533bb3a7abd00071549fb377fb Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Sat, 1 Aug 2020 18:00:50 +0200 Subject: [PATCH] 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 --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index c794ac55a..cc70a1011 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;