File
- drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php, line 304
Class
- AbstractProcessTest
- @author Robert Schönthal <seroscho@googlemail.com>
Namespace
Symfony\Component\Process\Tests
Code
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());
}