From: Mark Andrews Date: Fri, 17 Aug 2018 06:24:51 +0000 (+1000) Subject: stop.pl: report test being stopped X-Git-Tag: v9.13.4~105^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15c3bf9e822596eb5dae7f6fbba4485f41bd254c;p=thirdparty%2Fbind9.git stop.pl: report test being stopped --- diff --git a/bin/tests/system/stop.pl b/bin/tests/system/stop.pl index 8d02b87d645..e6079aed87a 100644 --- a/bin/tests/system/stop.pl +++ b/bin/tests/system/stop.pl @@ -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++; }