public function testIsNotSuccessful()
 {
     $this->skipIfPHPSigchild();
     parent::testIsNotSuccessful();
 }
 public function testSignalWithWrongNonIntSignal()
 {
     if ($this->enabledSigchild) {
         $this->expectExceptionIfPHPSigchild('Symfony\\Component\\Process\\Exception\\RuntimeException', 'This PHP has been compiled with --enable-sigchild. The process can not be signaled.');
     } else {
         $this->setExpectedException('Symfony\\Component\\Process\\Exception\\RuntimeException', 'Error while sending signal `Céphalopodes`.');
     }
     parent::testSignalWithWrongNonIntSignal();
 }
 public function testStopWithTimeoutIsActuallyWorking()
 {
     $this->skipIfPHPSigchild();
     parent::testStopWithTimeoutIsActuallyWorking();
 }
Example #4
0
 /**
  * @expectedException \Symfony\Component\Process\Exception\RuntimeException
  */
 public function testSignalWithWrongNonIntSignal()
 {
     $this->skipIfPHPSigchild();
     parent::testSignalWithWrongNonIntSignal();
 }