Merge branch 'PHP-8.3'

* PHP-8.3:
  Skip on Windows
This commit is contained in:
Niels Dossche 2024-01-01 15:59:01 +01:00
commit ea6110f52e

View file

@ -1,5 +1,11 @@
--TEST-- --TEST--
Bug #77432 (Segmentation fault on including phar file) Bug #77432 (Segmentation fault on including phar file)
--SKIPIF--
<?php
if (PHP_OS_FAMILY === "Windows") {
die('skip not for Windows');
}
?>
--EXTENSIONS-- --EXTENSIONS--
phar phar
--INI-- --INI--
@ -36,7 +42,8 @@ include("phar://" . $filename);
--- Include 1 --- --- Include 1 ---
hello world hello world
--- Include 2 --- --- Include 2 ---
%A
Warning: Constant already defined in %s on line %d
hello world hello world
--- After unlink --- --- After unlink ---