You are here

public function SigchildDisabledProcessTest::testExitCodeText in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/process/Tests/SigchildDisabledProcessTest.php \Symfony\Component\Process\Tests\SigchildDisabledProcessTest::testExitCodeText()

@expectedException \Symfony\Component\Process\Exception\RuntimeException @expectedExceptionMessage This PHP has been compiled with --enable-sigchild. You must use setEnhanceSigchildCompatibility() to use this method.

Overrides AbstractProcessTest::testExitCodeText

File

vendor/symfony/process/Tests/SigchildDisabledProcessTest.php, line 153

Class

SigchildDisabledProcessTest

Namespace

Symfony\Component\Process\Tests

Code

public function testExitCodeText() {
  $process = $this
    ->getProcess('qdfsmfkqsdfmqmsd');
  $process
    ->run();
  $process
    ->getExitCodeText();
}