@expectedException Symfony\Component\Process\Exception\RuntimeException
public function testSignalWithWrongIntSignal() {
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
$this
->markTestSkipped('POSIX signals do not work on windows');
}
$process = $this
->getProcess('php -r "sleep(3);"');
$process
->start();
$process
->signal(-4);
}