diff options
author | Steve Holme <steve_holme@hotmail.com> | 2020-02-27 17:33:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-02 08:29:11 +0100 |
commit | df207d2dd93b9e73c0550f62d8034bacecffbd20 (patch) | |
tree | 189d14a891843c6083cddbcb6d46696a201ba7e1 /tests/runtests.pl | |
parent | 0b3e3644e09a3082401ca13b366f67778afd7340 (diff) | |
download | curl-df207d2dd93b9e73c0550f62d8034bacecffbd20.tar.gz |
tests: disable SMTP UTF-8 tests on Windows
Fixes #4988
Closes #4992
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index e867f2d95..bc25dfed3 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -243,6 +243,7 @@ my $has_altsvc; # set if libcurl is built with alt-svc support my $has_ldpreload; # set if curl is built for systems supporting LD_PRELOAD my $has_multissl; # set if curl is build with MultiSSL support my $has_manual; # set if curl is built with built-in manual +my $has_win32; # set if curl is built for Windows # this version is decided by the particular nghttp2 library that is being used my $h2cver = "h2c"; @@ -2639,6 +2640,7 @@ sub setupfeatures { $feature{"alt-svc"} = $has_altsvc; $feature{"manual"} = $has_manual; $feature{"unix-sockets"} = $has_unix; + $feature{"win32"} = $has_win32; # make each protocol an enabled "feature" for my $p (@protocols) { @@ -2718,6 +2720,7 @@ sub checksystem { # Win32-style path. $pwd = pathhelp::sys_native_current_path(); $has_textaware = 1; + $has_win32 = 1; } if ($libcurl =~ /(winssl|schannel)/i) { $has_winssl=1; |