public function testProcessWithoutTermSignal() {
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
$this
->markTestSkipped('Windows does not support POSIX signals');
}
$process = $this
->getProcess('php -m');
$process
->run();
$this
->assertEquals(0, $process
->getTermSignal());
}