mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
runtests.pl: check for tstunnel command on Windows
The Windows console version of stunnel is called "tstunnel", while running "stunnel" on Windows spawns a new console window which cannot be handled by the testsuite.
This commit is contained in:
parent
190bb785d8
commit
d718abd968
@ -191,7 +191,7 @@ my $pwd = getcwd(); # current working directory
|
||||
my $start;
|
||||
my $ftpchecktime=1; # time it took to verify our test FTP server
|
||||
|
||||
my $stunnel = checkcmd("stunnel4") || checkcmd("stunnel");
|
||||
my $stunnel = checkcmd("stunnel4") || checkcmd("tstunnel") || checkcmd("stunnel");
|
||||
my $valgrind = checktestcmd("valgrind");
|
||||
my $valgrind_logfile="--logfile";
|
||||
my $valgrind_tool;
|
||||
|
Loading…
Reference in New Issue
Block a user