We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89bd0d7 commit ebc9979Copy full SHA for ebc9979
tests/Symfony/Tests/Component/Process/PhpExecutableFinderTest.php
@@ -23,6 +23,10 @@ class PhpExecutableFinderTest extends \PHPUnit_Framework_TestCase
23
*/
24
public function testFindWithPHP_PATH()
25
{
26
+ if (defined('PHP_BINARY')) {
27
+ $this->markTestSkipped('The PHP binary is easily available as of PHP 5.4');
28
+ }
29
+
30
$f = new PhpExecutableFinder();
31
32
$current = $f->find();
@@ -41,6 +45,10 @@ public function testFindWithPHP_PATH()
41
45
42
46
public function testFindWithSuffix()
43
47
48
49
50
51
44
52
putenv('PHP_PATH=');
53
putenv('PHP_PEAR_PHP_BIN=');
54
0 commit comments