[skip ci] Skip failing readonly+clone tests for JIT for now

See implementation at GH-10748
This commit is contained in:
Ilija Tovilo 2023-03-03 10:42:23 +01:00
parent 3e6d49e042
commit ccc16b45ef
No known key found for this signature in database
GPG key ID: A4F5D403F118200A
3 changed files with 18 additions and 0 deletions

View file

@ -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

View file

@ -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

View file

@ -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