[PHP] Make the testsuite fail on any PHP diagnostic
This commit is contained in:
parent
123eabf200
commit
6833bb7e0f
3 changed files with 13 additions and 11 deletions
|
|
@ -1,5 +1,16 @@
|
|||
<?php
|
||||
|
||||
function die_on_error($errno, $errstr, $file, $line) {
|
||||
if ($file !== Null) {
|
||||
print $file;
|
||||
if ($line !== Null) print ":$line";
|
||||
print ": ";
|
||||
}
|
||||
print "$errstr\n";
|
||||
exit(1);
|
||||
}
|
||||
set_error_handler("die_on_error", -1);
|
||||
|
||||
$_original_functions=get_defined_functions();
|
||||
$_original_globals=1;
|
||||
$_original_classes=get_declared_classes();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue