--TEST-- FPM: Blocked SIGQUIT prevents idle process to be killed --EXTENSIONS-- pcntl --SKIPIF-- --FILE-- start(); $tester->expectLogStartNotices(); $tester->multiRequest(2); $tester->status([ 'total processes' => 2, ]); // wait for process to be killed sleep(7); $tester->expectLogWarning('child \\d+ exited on signal 9 \\(SIGKILL\\) after \\d+.\\d+ seconds from start', 'unconfined'); $tester->expectLogNotice('child \\d+ started', 'unconfined'); $tester->expectLogWarning('child \\d+ exited on signal 9 \\(SIGKILL\\) after \\d+.\\d+ seconds from start', 'unconfined'); $tester->expectLogNotice('child \\d+ started', 'unconfined'); $tester->status([ 'total processes' => 1, ]); $tester->terminate(); $tester->expectLogTerminatingNotices(); $tester->close(); ?> Done --EXPECT-- Done --CLEAN--