aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2014-01-05 02:22:09 +0100
committerMarc Hoersken <info@marc-hoersken.de>2014-01-05 02:22:09 +0100
commitd718abd968aeb4f8351f2862059cae0ed37cb3c2 (patch)
tree0af1935a1d2ea0d9c8d24e97d7e7d2472c69c9a6 /tests
parent190bb785d8c6697a5f9bc769e0b6a56a30f2163a (diff)
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.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index f6a228c7f..e17465a90 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -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;