display killed pids to make it easier to see for autobuilds etc

This commit is contained in:
Daniel Stenberg 2005-04-28 14:03:08 +00:00
parent 502e5ae6e1
commit abee109cd1
2 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,7 @@ sub ftpkillslaves {
my $f = ".sock$base$id$ext.pid";
my $pid = checkserver($f);
if($pid > 0) {
printf ("* kill pid for %-5s => %-5d\n", "ftp-$base$id$ext", $pid);
kill (9, $pid); # die!
}
unlink($f);

View File

@ -1571,9 +1571,8 @@ sub singletest {
#######################################################################
# Stop all running test servers
sub stopservers {
print "Shutting down test suite servers:\n" if ($verbose);
for(keys %run) {
printf ("* kill pid for %-5s => %-5d\n", $_, $run{$_}) if($verbose);
printf ("* kill pid for %-5s => %-5d\n", $_, $run{$_});
stopserver($run{$_}); # the pid file is in the hash table
}
ftpkillslaves();