[PHP] Make the testsuite fail on any PHP diagnostic

This commit is contained in:
Olly Betts 2019-02-09 12:52:25 +13:00
commit 6833bb7e0f
3 changed files with 13 additions and 11 deletions

View file

@ -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();