Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Zend/tests/bug31098.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
--TEST--
Bug #31098 (isset() / empty() incorrectly returns true in dereference of a wrong type)
--SKIPIF--
<?php
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail unresolved issues with JIT on Windows');
}
?>
--FILE--
<?php
$a = '';
Expand Down
6 changes: 6 additions & 0 deletions Zend/tests/bug44660.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
--TEST--
Bug #44660 (Indexed and reference assignment to property of non-object don't trigger warning)
--SKIPIF--
<?php
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail unresolved issues with JIT on Windows');
}
?>
--FILE--
<?php
$s = "hello";
Expand Down
5 changes: 5 additions & 0 deletions ext/opcache/tests/jit/fetch_obj_001.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail unresolved issues with JIT on Windows');
}
?>
--FILE--
<?php
function foo(&$a) {
Expand Down