diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2013-04-06 20:24:10 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2013-04-06 20:24:10 +0200 |
commit | e34bc917d676d9567ae439760b5f36d6e2612c6e (patch) | |
tree | 1d1fd42533d2f4c82119711232bd46b38e5a8e93 /tests/runtests.pl | |
parent | 2ba0f1373c6d3fdbc268a02d1eefb06ba6fa336b (diff) |
runtests.pl: Fixed --verbose parameter passed to http_pipe.py
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 1cbf76441..ae6ce278e 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1173,6 +1173,7 @@ sub runhttpserver { my $logfile; my $flags = ""; my $exe = "$perl $srcdir/httpserver.pl"; + my $verbose_flag = "--verbose "; if($alt eq "ipv6") { # if IPv6, use a different setup @@ -1186,7 +1187,8 @@ sub runhttpserver { elsif($alt eq "pipe") { # basically the same, but another ID $idnum = 3; - $exe = "python $srcdir/http_pipe.py"; + $exe = "python $srcdir/http_pipe.py"; + $verbose_flag .= "1 "; } $server = servername_id($proto, $ipvnum, $idnum); @@ -1210,7 +1212,7 @@ sub runhttpserver { $flags .= "--gopher " if($proto eq "gopher"); $flags .= "--connect $HOSTIP " if($alt eq "proxy"); - $flags .= "--verbose " if($debugprotocol); + $flags .= $verbose_flag if($debugprotocol); $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; $flags .= "--id $idnum " if($idnum > 1); $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\""; @@ -1285,7 +1287,7 @@ sub runhttp_pipeserver { $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); - $flags .= "--verbose " if($debugprotocol); + $flags .= "--verbose 1 " if($debugprotocol); $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; $flags .= "--id $idnum " if($idnum > 1); $flags .= "--port $port --srcdir \"$srcdir\""; |