]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
stop.pl: report test being stopped
authorMark Andrews <marka@isc.org>
Fri, 17 Aug 2018 06:24:51 +0000 (16:24 +1000)
committerWitold Kręcicki <wpk@isc.org>
Tue, 23 Oct 2018 12:15:04 +0000 (12:15 +0000)
bin/tests/system/stop.pl

index 8d02b87d64545996950104486704c8637a474f8d..e6079aed87af315ea824e46b6f718ce47b71e3e4 100644 (file)
@@ -159,13 +159,13 @@ sub stop_signal {
                $result = system("/bin/kill -f -$sig $pid");
                unlink $pid_file;
                if ($result != 0) {
-                       print "I:$server died before a SIG$sig was sent\n";
+                       print "I:$test:$server died before a SIG$sig was sent\n";
                        $errors++;
                }
        } else {
                $result = kill $sig, $pid;
                if (!$result) {
-                       print "I:$server died before a SIG$sig was sent\n";
+                       print "I:$test:$server died before a SIG$sig was sent\n";
                        unlink $pid_file;
                        $errors++;
                }