Skip to content

Commit eaf4b73

Browse files
committed
skip array_access_002 test, broken on V8 11.3.244.8
1 parent 21d6286 commit eaf4b73

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/array_access_002.phpt

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
--TEST--
22
Test V8::executeString() : Use ArrayAccess with JavaScript native push method
33
--SKIPIF--
4-
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
4+
<?php require_once(dirname(__FILE__) . '/skipif.inc');
5+
6+
if (str_starts_with(V8Js::V8_VERSION, '11.3.244.8')) {
7+
die("skip V8 version known to call setter twice");
8+
}
9+
10+
?>
511
--INI--
612
v8js.use_array_access = 1
713
--FILE--

0 commit comments

Comments
 (0)