Skip to content

Commit

Permalink
Merge branch 'PHP-8.3'
Browse files Browse the repository at this point in the history
* PHP-8.3:
  Fix clean for higher branches
  • Loading branch information
iluuu1994 committed Dec 13, 2023
2 parents e2972e4 + aa52c29 commit b10e357
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ext/standard/tests/file/file_variation8-win32.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(substr(PHP_OS, 0, 3) != "WIN")
--FILE--
<?php
echo "*** Testing file() : variation ***\n";
$mainDir = "fileVar8_32.dir";
$mainDir = "fileVar8_win32.dir";
$subDir = "fileVar8Sub";
$absMainDir = __DIR__."\\".$mainDir;
mkdir($absMainDir);
Expand Down Expand Up @@ -60,7 +60,7 @@ echo "\n*** Done ***\n";
?>
--CLEAN--
<?php
$mainDir = "fileVar8.dir";
$mainDir = "fileVar8_win32.dir";
$subDir = "fileVar8Sub";
$absMainDir = __DIR__."/".$mainDir;
$absSubDir = $absMainDir."/".$subDir;
Expand Down Expand Up @@ -99,12 +99,12 @@ array(1) {

-- Iteration 5 --

Warning: file(%sfileVar8_32.dir\fileVar8Sub\..\\\fileVar8Sub\\..\\..\fileVar8Sub\FileGetContentsVar7.tmp): Failed to open stream: No such file or directory in %s on line %d
Warning: file(%sfileVar8_win32.dir\fileVar8Sub\..\\\fileVar8Sub\\..\\..\fileVar8Sub\FileGetContentsVar7.tmp): Failed to open stream: No such file or directory in %s on line %d
bool(false)

-- Iteration 6 --

Warning: file(%sfileVar8_32.dir\fileVar8Sub\BADDIR\FileGetContentsVar7.tmp): Failed to open stream: No such file or directory in %s on line %d
Warning: file(%sfileVar8_win32.dir\fileVar8Sub\BADDIR\FileGetContentsVar7.tmp): Failed to open stream: No such file or directory in %s on line %d
bool(false)

-- Iteration 7 --
Expand Down

0 comments on commit b10e357

Please sign in to comment.