From: Marc Hoersken Date: Fri, 6 Mar 2020 20:15:58 +0000 (+0100) Subject: runtests: fix missing use of exe_ext helper function X-Git-Tag: curl-7_69_1~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3dce984;p=thirdparty%2Fcurl.git runtests: fix missing use of exe_ext helper function --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 08d9f9f3a5..905faa215d 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 = ; close(VERSOUT); - open(DISABLED, "server/disabled|"); + open(DISABLED, "server/disabled".exe_ext('TOOL')."|"); @disabled = ; close(DISABLED);