private function SimpleProcessTest::skipIfPHPSigchild

16 calls to SimpleProcessTest::skipIfPHPSigchild()
SimpleProcessTest::testExitCodeCommandFailed in drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php
SimpleProcessTest::testExitCodeText in drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php
SimpleProcessTest::testGetExitCode in drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php
SimpleProcessTest::testGetPid in drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php
SimpleProcessTest::testGetPidIsNullAfterRun in drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php

... See full list

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/SimpleProcessTest.php, line 141

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');
  }
}