From: Todd Lyons Date: Thu, 18 Sep 2014 14:47:22 +0000 (-0700) Subject: Fix kill commandline for Solaris compatibility X-Git-Tag: exim-4_85_RC1~52 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/ee15e974de47c3b8520556b4863957ad707e1822 Fix kill commandline for Solaris compatibility --- diff --git a/test/runtest b/test/runtest index a647b229a..095b96851 100755 --- 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 -SIGINT $pid"); + system("sudo kill -INT $pid"); } if (opendir(DIR, "spool")) @@ -179,7 +179,7 @@ if (opendir(DIR, "spool")) chomp($pid = ); close(PID); print "Tidyup: killing daemon pid=$pid\n"; - system("sudo rm -f spool/$spool; sudo kill -SIGINT $pid"); + system("sudo rm -f spool/$spool; sudo kill -INT $pid"); } } else