now throw PHP Exception objects instead of giving a PHP error of type E_ERROR. This change shouldn't cause incompatibility issues, since you can't set an error handler for E_ERROR, so previously PHP would just exit which also happens for unhandled exceptions. The benefit is you can now catch them if you want to. Fixes SF#2545578 and SF#2955522. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12055 626c5289-ae23-0410-ae9c-e8d60b6d4f22
43 lines
827 B
PHP
Executable file
43 lines
827 B
PHP
Executable file
<?php
|
|
|
|
require "tests.php";
|
|
require "threads_exception.php";
|
|
|
|
// Check functions
|
|
check::functions(array(test_simple,test_message,test_hosed,test_unknown,test_multi));
|
|
// Check classes.
|
|
check::classes(array(Exc,Test));
|
|
// Chek globals.
|
|
check::globals(array(exc_code,exc_msg));
|
|
|
|
$t = new Test();
|
|
try {
|
|
$t->unknown();
|
|
} catch (Exception $e) {
|
|
check::equal($e->getMessage(), 'C++ A * exception thrown', '');
|
|
}
|
|
|
|
try {
|
|
$t->simple();
|
|
} catch (Exception $e) {
|
|
check::equal($e->getCode(), 37, '');
|
|
}
|
|
|
|
try {
|
|
$t->message();
|
|
} catch (Exception $e) {
|
|
check::equal($e->getMessage(), 'I died.', '');
|
|
}
|
|
|
|
try {
|
|
$t->hosed();
|
|
} catch (Exception $e) {
|
|
check::equal($e->getMessage(), 'C++ Exc exception thrown', '');
|
|
}
|
|
|
|
foreach (Array(1,2,3,4) as $i) {
|
|
try {
|
|
$t->multi($i);
|
|
} catch (Exception $e) {
|
|
}
|
|
}
|