]> granicus.if.org Git - curl/commitdiff
display killed pids to make it easier to see for autobuilds etc
authorDaniel Stenberg <daniel@haxx.se>
Thu, 28 Apr 2005 14:03:08 +0000 (14:03 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 28 Apr 2005 14:03:08 +0000 (14:03 +0000)
tests/ftp.pm
tests/runtests.pl

index 390c21459ff0464709f1e85577a90c7fb9e023f8..6c5f9d353c1ee1e11e88a999b1e4c24b7423292b 100644 (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);
index bef5a59a376c30eb89026828287d9f5e048edc69..1a604d80101df0f5cbf55eeb7034c36dfba133ae 100755 (executable)
@@ -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();