diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-03-06 21:15:58 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-03-07 20:16:10 +0100 |
commit | 3dce9849be4f84df83ba342be24ce29f4fbe01d4 (patch) | |
tree | 75046fc7c898ba852b9ebad22360a73cbc4daa79 | |
parent | c8f086bcc315d9dec6a7438f39c3c36dfeb27e42 (diff) |
runtests: fix missing use of exe_ext helper function
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 08d9f9f3a..905faa215 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2196,7 +2196,7 @@ sub runsocksserver { $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); # start our socks server, get commands from the FTP cmd file - my $cmd="server/socksd". + my $cmd="server/socksd".exe_ext('SRV'). " --port $port ". " --pidfile $pidfile". " --backend $HOSTIP". @@ -2710,7 +2710,7 @@ sub checksystem { @version = <VERSOUT>; close(VERSOUT); - open(DISABLED, "server/disabled|"); + open(DISABLED, "server/disabled".exe_ext('TOOL')."|"); @disabled = <DISABLED>; close(DISABLED); |