mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
[skip ci] Skip failing readonly+clone tests for JIT for now
See implementation at GH-10748
This commit is contained in:
parent
3e6d49e042
commit
ccc16b45ef
3 changed files with 18 additions and 0 deletions
|
@ -1,5 +1,11 @@
|
|||
--TEST--
|
||||
Readonly property cannot be reset twice during cloning
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (function_exists('opcache_get_status') && opcache_get_status()["jit"]["enabled"] ?? false) {
|
||||
die('skip Not yet implemented for JIT');
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
--TEST--
|
||||
Readonly property can be reset once during cloning
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (function_exists('opcache_get_status') && opcache_get_status()["jit"]["enabled"] ?? false) {
|
||||
die('skip Not yet implemented for JIT');
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
--TEST--
|
||||
__clone() can indirectly modify unlocked readonly properties
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (function_exists('opcache_get_status') && opcache_get_status()["jit"]["enabled"] ?? false) {
|
||||
die('skip Not yet implemented for JIT');
|
||||
}
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue