From: Daniel Stenberg Date: Tue, 27 Dec 2022 11:00:13 +0000 (+0100) Subject: runtests: make 'mbedtls' a testable feature X-Git-Tag: curl-7_88_0~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9ee0e47c18f5af93612fbe5a83655b04922dffd;p=thirdparty%2Fcurl.git runtests: make 'mbedtls' a testable feature Also add to FILEFORMAT.md --- diff --git a/tests/FILEFORMAT.md b/tests/FILEFORMAT.md index be111678e2..e9248826ef 100644 --- a/tests/FILEFORMAT.md +++ b/tests/FILEFORMAT.md @@ -423,6 +423,7 @@ Features testable here are: - `oldlibssh` (versions before 0.9.4) - `libz` - `manual` +- `mbedtls` - `Mime` - `netrc` - `NSS` diff --git a/tests/runtests.pl b/tests/runtests.pl index 33caf7c5cd..0547d3a46e 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3015,6 +3015,7 @@ sub setupfeatures { $feature{"manual"} = $has_manual; $feature{"MinGW"} = $has_mingw; $feature{"MultiSSL"} = $has_multissl; + $feature{"mbedtls"} = $has_mbedtls; $feature{"NSS"} = $has_nss; $feature{"NTLM"} = $has_ntlm; $feature{"NTLM_WB"} = $has_ntlm_wb;