private function SimpleProcessTest::skipIfPHPSigchild in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Tests/SimpleProcessTest.php \Symfony\Component\Process\Tests\SimpleProcessTest::skipIfPHPSigchild()
10 calls to SimpleProcessTest::skipIfPHPSigchild()
- SimpleProcessTest::testExitCodeCommandFailed in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testExitCodeText in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testGetExitCode in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testGetPid in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testGetPidIsNullAfterRun in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php
File
- vendor/
symfony/ process/ Tests/ SimpleProcessTest.php, line 209
Class
Namespace
Symfony\Component\Process\TestsCode
private function skipIfPHPSigchild() {
if ($this->enabledSigchild) {
$this
->markTestSkipped('Your PHP has been compiled with --enable-sigchild, this test can not be executed');
}
}