File tree 5 files changed +43
-0
lines changed
5 files changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ $zend_mm_enabled = getenv("USE_ZEND_ALLOC");
8
8
if ($ zend_mm_enabled === "0 " ) {
9
9
die ("skip Zend MM disabled " );
10
10
}
11
+ $ tracing = extension_loaded ("Zend OPcache " )
12
+ && ($ conf = opcache_get_configuration ()["directives " ])
13
+ && array_key_exists ("opcache.jit " , $ conf )
14
+ && $ conf ["opcache.jit " ] === "tracing " ;
15
+ if (PHP_OS_FAMILY === "Windows " && PHP_INT_SIZE == 8 && $ tracing ) {
16
+ $ url = "https://github.com/php/php-src/issues/15709 " ;
17
+ die ("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $ url " );
18
+ }
11
19
?>
12
20
--FILE--
13
21
<?php
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
GH-9407: LSP error in eval'd code refers to wrong class for static type
3
+ --SKIPIF--
4
+ <?php
5
+ $ tracing = extension_loaded ("Zend OPcache " )
6
+ && ($ conf = opcache_get_configuration ()["directives " ])
7
+ && array_key_exists ("opcache.jit " , $ conf )
8
+ && $ conf ["opcache.jit " ] === "tracing " ;
9
+ if (PHP_OS_FAMILY === "Windows " && PHP_INT_SIZE == 8 && $ tracing ) {
10
+ $ url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979 " ;
11
+ die ("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $ url " );
12
+ }
13
+ ?>
3
14
--FILE--
4
15
<?php
5
16
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ Stack limit 014 - Fuzzer
4
4
<?php
5
5
if (!function_exists ('zend_test_zend_call_stack_get ' )) die ("skip zend_test_zend_call_stack_get() is not available " );
6
6
if (getenv ("SKIP_SLOW_TESTS " )) die ('skip slow test ' );
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
+ }
7
15
?>
8
16
--EXTENSIONS--
9
17
zend_test
Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ memory_limit=2M
7
7
if (getenv ("USE_ZEND_ALLOC " ) === "0 " ) {
8
8
die ("skip Zend MM disabled " );
9
9
}
10
+ $ tracing = extension_loaded ("Zend OPcache " )
11
+ && ($ conf = opcache_get_configuration ()["directives " ])
12
+ && array_key_exists ("opcache.jit " , $ conf )
13
+ && $ conf ["opcache.jit " ] === "tracing " ;
14
+ if (PHP_OS_FAMILY === "Windows " && PHP_INT_SIZE == 8 && $ tracing ) {
15
+ $ url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979 " ;
16
+ die ("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $ url " );
17
+ }
10
18
?>
11
19
--FILE--
12
20
<?php
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
5
5
if (getenv ("USE_ZEND_ALLOC " ) === "0 " ) {
6
6
die ("skip Zend MM disabled " );
7
7
}
8
+ $ tracing = extension_loaded ("Zend OPcache " )
9
+ && ($ conf = opcache_get_configuration ()["directives " ])
10
+ && array_key_exists ("opcache.jit " , $ conf )
11
+ && $ conf ["opcache.jit " ] === "tracing " ;
12
+ if (PHP_OS_FAMILY === "Windows " && PHP_INT_SIZE == 8 && $ tracing ) {
13
+ $ url = "https://github.com/php/php-src/pull/14919#issuecomment-2259003979 " ;
14
+ die ("xfail Test fails on Windows x64 (VS17) and tracing JIT; see $ url " );
15
+ }
8
16
?>
9
17
--FILE--
10
18
<?php
You can’t perform that action at this time.
0 commit comments