You are here

private function SimpleProcessTest::skipIfPHPSigchild in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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

... See full list

File

vendor/symfony/process/Tests/SimpleProcessTest.php, line 209

Class

SimpleProcessTest

Namespace

Symfony\Component\Process\Tests

Code

private function skipIfPHPSigchild() {
  if ($this->enabledSigchild) {
    $this
      ->markTestSkipped('Your PHP has been compiled with --enable-sigchild, this test can not be executed');
  }
}