0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-10-18 10:18:40 +00:00

skip array_access_002 test, broken on V8 11.3.244.8

This commit is contained in:
Stefan Siegl 2024-09-29 19:47:13 +02:00
parent 21d6286ae0
commit eaf4b73248

View File

@ -1,7 +1,13 @@
--TEST--
Test V8::executeString() : Use ArrayAccess with JavaScript native push method
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
<?php require_once(dirname(__FILE__) . '/skipif.inc');
if (str_starts_with(V8Js::V8_VERSION, '11.3.244.8')) {
die("skip V8 version known to call setter twice");
}
?>
--INI--
v8js.use_array_access = 1
--FILE--