From: Viktor Szakats Date: Tue, 25 Feb 2025 00:31:58 +0000 (+0100) Subject: runtests: recognize AWS-LC as OpenSSL X-Git-Tag: curl-8_13_0~355 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31fd77fb3b11f48bfb36cbb3fb27e179a330ef3c;p=thirdparty%2Fcurl.git runtests: recognize AWS-LC as OpenSSL Fixes (GHA/linux, AWS-LC jobs): ``` test 0307 SKIPPED: curl lacks OpenSSL support test 0308 SKIPPED: curl lacks OpenSSL support [...] ``` Ref: https://github.com/curl/curl/actions/runs/13511134270/job/37751473424#step:42:104 Follow-up to 34ef4fab22d93cf7ef1d6c2954a0bad19f323ea9 #10320 Closes #16466 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 00c5427874..92a3a9e3ab 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -569,7 +569,7 @@ sub checksystemfeatures { $feature{"sectransp"} = 1; $feature{"SSLpinning"} = 1; } - elsif ($libcurl =~ /\sBoringSSL\b/i) { + elsif ($libcurl =~ /\s(BoringSSL|AWS-LC)\b/i) { # OpenSSL compatible API $feature{"OpenSSL"} = 1; $feature{"SSLpinning"} = 1;