diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2020-08-01 18:00:50 +0200 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2020-08-02 10:32:00 +0200 |
commit | 5c2728eb42bc49533bb3a7abd00071549fb377fb (patch) | |
tree | 6dc73a83497577068dab9fc356787a2ccf713969 | |
parent | ca567dc5a4da8366eb7c4b88697fe41164c1938b (diff) | |
download | curl-5c2728eb42bc49533bb3a7abd00071549fb377fb.tar.gz |
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
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |