mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
[skip ci] Skip failing readonly+clone tests for JIT for now
See implementation at GH-10748
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user