]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests: recognize AWS-LC as OpenSSL
authorViktor Szakats <commit@vsz.me>
Tue, 25 Feb 2025 00:31:58 +0000 (01:31 +0100)
committerViktor Szakats <commit@vsz.me>
Tue, 25 Feb 2025 11:59:09 +0000 (12:59 +0100)
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

tests/runtests.pl

index 00c5427874e95d7d1590ccc1393d63d885999584..92a3a9e3abad3ae92812a362f45fefb96390b70b 100755 (executable)
@@ -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;