From: Andrew Bartlett Date: Tue, 26 Jul 2011 07:04:40 +0000 (+1000) Subject: selftest: Avoid being run over by armies of the undead X-Git-Tag: talloc-2.0.6~238 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=2b47aface434000b29aa29f4ff6348cc147ae757 selftest: Avoid being run over by armies of the undead Ignore SIGCHILD to reap zombies Andrew Bartlett Signed-off-by: Andrew Tridgell --- diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 78627c8eb66..5cbb6866f6e 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -176,6 +176,8 @@ sub pipe_handler { $SIG{PIPE} = \&pipe_handler; +$SIG{CHILD} = 'IGNORE'; + sub find_in_list($$) { my ($list, $fullname) = @_;