Skip to content

Commit cfcf39f

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: Dynamically xfail test case which fails on CI
2 parents 55e8ebe + bdde797 commit cfcf39f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Zend/tests/gh16508.phpt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
GH-16508: Missing lineno in inheritance errors of delayed early bound classes
33
--EXTENSIONS--
44
opcache
5+
--SKIPIF--
6+
<?php
7+
$tracing = extension_loaded("Zend OPcache")
8+
&& ($conf = opcache_get_configuration()["directives"])
9+
&& array_key_exists("opcache.jit", $conf)
10+
&& $conf["opcache.jit"] === "tracing";
11+
if (PHP_OS_FAMILY === "Windows" && PHP_INT_SIZE == 8 && $tracing) {
12+
$url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979";
13+
die("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $url");
14+
}
15+
?>
516
--INI--
617
opcache.enable_cli=1
718
--FILE--

0 commit comments

Comments
 (0)