0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-20 04:15:20 +00:00
phpv8/tests/fatal_error_no_uninstall_inner_frame.phpt
Stefan Siegl 5a78a76d41 Adapt unwind tests for PHP 5.6 style error messages
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.
2014-09-21 20:34:10 +00:00

31 lines
596 B
PHP

--TEST--
Test V8::executeString() : Fatal Error handler not to uninstall on inner frames
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$js = new V8Js();
$js->bar = function() {
echo "nothing.\n";
};
$js->foo = function() {
global $js;
// call to JS context, this must not touch the error handling context
$js->executeString("PHP.bar();");
$bar = null;
$bar->foo();
};
$js->executeString("PHP.foo();");
?>
===EOF===
--EXPECTF--
nothing.
Fatal error: Call to a member function foo() on %s in %s/fatal_error_no_uninstall_inner_frame.php on line 15