diff --git a/docs/tests/FILEFORMAT.md b/docs/tests/FILEFORMAT.md index a58eb13205..3bb1acb256 100644 --- a/docs/tests/FILEFORMAT.md +++ b/docs/tests/FILEFORMAT.md @@ -455,6 +455,7 @@ Features testable here are: - `codeset-utf8`. If the running codeset is UTF-8 capable. - `cookies` - `crypto` +- `cygwin` - `Debug` - `digest` - `DoH` diff --git a/tests/runtests.pl b/tests/runtests.pl index a470597bf6..9064d799c3 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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;