File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Bug #31098 (isset() / empty() incorrectly returns true in dereference of a wrong type)
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_OS_FAMILY === 'Windows ' && ini_get ('opcache.jit ' ) && ini_get ('opcache.jit_buffer_size ' )) {
6
+ die ('xfail unresolved issues with JIT on Windows ' );
7
+ }
8
+ ?>
3
9
--FILE--
4
10
<?php
5
11
$ a = '' ;
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Bug #44660 (Indexed and reference assignment to property of non-object don't trigger warning)
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_OS_FAMILY === 'Windows ' && ini_get ('opcache.jit ' ) && ini_get ('opcache.jit_buffer_size ' )) {
6
+ die ('xfail unresolved issues with JIT on Windows ' );
7
+ }
8
+ ?>
3
9
--FILE--
4
10
<?php
5
11
$ s = "hello " ;
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ opcache.file_update_protection=0
7
7
opcache.jit_buffer_size=1M
8
8
--SKIPIF--
9
9
<?php require_once ('skipif.inc ' ); ?>
10
+ <?php
11
+ if (PHP_OS_FAMILY === 'Windows ' && ini_get ('opcache.jit ' ) && ini_get ('opcache.jit_buffer_size ' )) {
12
+ die ('xfail unresolved issues with JIT on Windows ' );
13
+ }
14
+ ?>
10
15
--FILE--
11
16
<?php
12
17
function foo (&$ a ) {
You can’t perform that action at this time.
0 commit comments