tests: add cygwin feature

This commit is contained in:
Viktor Szakats 2025-08-20 20:00:49 +02:00
parent 2b2d8b7756
commit 3d719ca463
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 4 additions and 0 deletions

View file

@ -455,6 +455,7 @@ Features testable here are:
- `codeset-utf8`. If the running codeset is UTF-8 capable.
- `cookies`
- `crypto`
- `cygwin`
- `Debug`
- `digest`
- `DoH`

View file

@ -568,6 +568,9 @@ sub checksystemfeatures {
$pwd = sys_native_current_path();
$feature{"win32"} = 1;
}
if($curl =~ /cygwin|msys/i) {
$feature{"cygwin"} = 1;
}
if($libcurl =~ /\sschannel\b/i) {
$feature{"Schannel"} = 1;
$feature{"SSLpinning"} = 1;