0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-12-22 03:01:51 +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--
Test V8::executeString() : Use ArrayAccess with JavaScript native push method Test V8::executeString() : Use ArrayAccess with JavaScript native push method
--SKIPIF-- --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-- --INI--
v8js.use_array_access = 1 v8js.use_array_access = 1
--FILE-- --FILE--