summaryrefslogtreecommitdiff
path: root/test/runtest
diff options
context:
space:
mode:
authorTodd Lyons <tlyons@exim.org>2014-09-18 09:02:17 -0700
committerTodd Lyons <tlyons@exim.org>2014-09-18 09:02:17 -0700
commited54e8aea07ab7ff1d0090e313b209f26a7fa3bd (patch)
tree956190fa019c5cc969e5f2e9b7dce6037f37cb05 /test/runtest
parentee15e974de47c3b8520556b4863957ad707e1822 (diff)
Fix kill commandline for Solaris compatibility #2
Diffstat (limited to 'test/runtest')
-rwxr-xr-xtest/runtest4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest b/test/runtest
index 095b96851..d1af19afa 100755
--- a/test/runtest
+++ b/test/runtest
@@ -1752,14 +1752,14 @@ if (/^killdaemon/)
print ">> killdaemon: recovered pid $pid\n" if $debug;
if ($pid)
{
- run_system("sudo /bin/kill -SIGINT $pid");
+ run_system("sudo /bin/kill -INT $pid");
wait;
}
} else {
$pid = `cat $parm_cwd/spool/exim-daemon.*`;
if ($pid)
{
- run_system("sudo /bin/kill -SIGINT $pid");
+ run_system("sudo /bin/kill -INT $pid");
close DAEMONCMD; # Waits for process
}
}