mirror of
https://github.com/phpv8/v8js.git
synced 2025-01-09 00:31:53 +00:00
test unwind behaviour on PHP notices & warnings, refs #94
This commit is contained in:
parent
cbda704d7e
commit
464cff0477
31
tests/fatal_error_ignore_non_fatals.phpt
Normal file
31
tests/fatal_error_ignore_non_fatals.phpt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
--TEST--
|
||||||
|
Test V8::executeString() : Fatal Error handler to ignore warnings
|
||||||
|
--SKIPIF--
|
||||||
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
||||||
|
--FILE--
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$js = new V8Js();
|
||||||
|
|
||||||
|
$js->foo = function() {
|
||||||
|
echo $bar;
|
||||||
|
trigger_error('Foo Bar!', E_USER_WARNING);
|
||||||
|
echo "blar foo\n";
|
||||||
|
};
|
||||||
|
|
||||||
|
$script = <<<END
|
||||||
|
|
||||||
|
PHP.foo();
|
||||||
|
|
||||||
|
END;
|
||||||
|
|
||||||
|
$js->executeString($script);
|
||||||
|
|
||||||
|
?>
|
||||||
|
===EOF===
|
||||||
|
--EXPECTF--
|
||||||
|
Notice: Undefined variable: bar in %s/fatal_error_ignore_non_fatals.php on line 6
|
||||||
|
|
||||||
|
Warning: Foo Bar! in %s/fatal_error_ignore_non_fatals.php on line 7
|
||||||
|
blar foo
|
||||||
|
===EOF===
|
Loading…
Reference in New Issue
Block a user