aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-04-28 14:25:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-04-28 14:25:48 +0000
commit957c258c6d8abb584169fdadb1a1e0a20dd409c7 (patch)
treeb69619215bb74d8cb990d791c915b25462a7aa0c /tests/runtests.pl
parentabee109cd1aebc4074db7bcfebadb1e38177db8a (diff)
no, the kill servers messages need to be verbose, they're too frequent
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 1a604d801..a74eacc87 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -545,7 +545,7 @@ sub runftpserver {
my $ip=$HOSTIP;
my $nameext;
- ftpkillslaves();
+ ftpkillslaves($verbose);
if($ipv6) {
# if IPv6, use a different setup
@@ -1572,10 +1572,10 @@ sub singletest {
# Stop all running test servers
sub stopservers {
for(keys %run) {
- printf ("* kill pid for %-5s => %-5d\n", $_, $run{$_});
+ printf ("* kill pid for %-5s => %-5d\n", $_, $run{$_}) if($verbose);
stopserver($run{$_}); # the pid file is in the hash table
}
- ftpkillslaves();
+ ftpkillslaves($verbose);
}
#######################################################################