projects
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db27092
)
Fix kill commandline for Solaris compatibility
author
Todd Lyons
<tlyons@exim.org>
Thu, 18 Sep 2014 14:47:22 +0000
(07:47 -0700)
committer
Todd Lyons
<tlyons@exim.org>
Thu, 18 Sep 2014 14:47:22 +0000
(07:47 -0700)
test/runtest
patch
|
blob
|
blame
|
history
diff --git
a/test/runtest
b/test/runtest
index a647b229aa13428f575090bfc64cebb6fa5b2fa4..095b968517c2d6d39c03a7b22e9997e6262cd389 100755
(executable)
--- a/
test/runtest
+++ b/
test/runtest
@@
-165,7
+165,7
@@
if (exists $TEST_STATE->{exim_pid})
{
$pid = $TEST_STATE->{exim_pid};
print "Tidyup: killing wait-mode daemon pid=$pid\n";
- system("sudo kill -
SIG
INT $pid");
+ system("sudo kill -INT $pid");
}
if (opendir(DIR, "spool"))
@@
-179,7
+179,7
@@
if (opendir(DIR, "spool"))
chomp($pid = <PID>);
close(PID);
print "Tidyup: killing daemon pid=$pid\n";
- system("sudo rm -f spool/$spool; sudo kill -
SIG
INT $pid");
+ system("sudo rm -f spool/$spool; sudo kill -INT $pid");
}
}
else