0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 19:15:17 +00:00
phpv8/tests/set_average_object_size_basic.phpt
2016-03-08 09:28:16 +01:00

17 lines
376 B
PHP

--TEST--
Test V8::setAverageObjectSize() : Average object size can be set on V8Js object
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$v8 = new V8Js();
$v8->setAverageObjectSize(32768);
// there's no API to query the currently announced external memory allocation,
// hence not much we can do here...
?>
===EOF===
--EXPECT--
===EOF===