mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 16:48:40 +00:00
5a78a76d41
PHP 5.6 has more detailed error messages, i.e. it says "on null" instead of "on a non-object". Replaced this particular part by a %s match to match both possibilities so the test suite passes on PHP 5.6 as well as older versions.
39 lines
654 B
PHP
39 lines
654 B
PHP
--TEST--
|
|
Test V8::executeString() : Fatal Error with recursive executeString calls
|
|
--SKIPIF--
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$js = new V8Js();
|
|
|
|
$js->baz = function() {
|
|
$bar = null;
|
|
$bar->bar();
|
|
};
|
|
|
|
$js->bar = function() {
|
|
global $js;
|
|
$js->executeString("PHP.baz();");
|
|
};
|
|
|
|
$js->foo = function() {
|
|
global $js;
|
|
$js->executeString("PHP.bar();");
|
|
};
|
|
|
|
$js->nofail = function() {
|
|
echo "foo\n";
|
|
};
|
|
|
|
$js->executeString("PHP.nofail();");
|
|
$js->executeString("PHP.nofail(); PHP.foo();");
|
|
|
|
?>
|
|
===EOF===
|
|
--EXPECTF--
|
|
foo
|
|
foo
|
|
|
|
Fatal error: Call to a member function bar() on %s in %s/fatal_error_recursive.php on line 7
|