php-src/ext/soap/tests/bugs/bug42151.phpt
Dmitry Stogov 1f3a661337 Fixed test
2008-05-08 09:15:38 +00:00

33 lines
650 B
PHP
Executable File

--TEST--
Bug #42151 (__destruct functions not called after catching a SoapFault exception)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class foo {
function __construct(){
$foo = @ new SoapClient('httpx://');
}
function __destruct(){
echo 'I never get executed.' . "\n";
}
}
class bar {
function __destruct(){
echo 'I don\'t get executed either.' . "\n";
}
}
try {
$bar = new bar();
$foo = new foo();
} catch (Exception $e){
echo $e->getMessage() . "\n";
}
echo "ok\n";
?>
--EXPECT--
SOAP-ERROR: Parsing WSDL: Couldn't load from 'httpx://' : failed to load external entity "httpx://"
ok
I don't get executed either.