Skip to content

Commit

Permalink
Merge branch '4.4' into 5.4
Browse files Browse the repository at this point in the history
* 4.4:
  [Finder] fix tests on Windows
  • Loading branch information
nicolas-grekas committed Mar 18, 2022
2 parents ca5bdf2 + 54e9d76 commit 38a44b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/PhpExecutableFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ public function testNotExitsBinaryFile()

public function testFindWithExecutableDirectory()
{
if ('\\' === \DIRECTORY_SEPARATOR) {
$this->markTestSkipped('Directories are not executable on Windows');
}

$originalPhpBinary = getenv('PHP_BINARY');

try {
Expand Down

0 comments on commit 38a44b2

Please sign in to comment.