From 15c3bf9e822596eb5dae7f6fbba4485f41bd254c Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 17 Aug 2018 16:24:51 +1000 Subject: [PATCH] stop.pl: report test being stopped --- bin/tests/system/stop.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/system/stop.pl b/bin/tests/system/stop.pl index 8d02b87d64..e6079aed87 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++; }