--TEST-- swoole_process: signal --SKIPIF-- --INI-- assert.active=1 assert.warning=1 assert.bail=0 assert.quiet_eval=0 --FILE-- start(); swoole_timer_after(500, function() use ($pid) { swoole_process::kill($pid, SIGTERM); swoole_timer_after(500, function() use ($pid) { swoole_process::kill($pid, SIGTERM); }); }); swoole_event_wait(); ?> --EXPECT-- CHILD SIGTERM CHILD EXIT PARENT WAIT