summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug79332.phpt
blob: 93add95d15b6ac1ae4e38ff3bab775488f68c880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #79332 (php_istreams are never freed)
--SKIPIF--
<?php
if (!extension_loaded('com_dotnet')) die('skip com_dotnet extension not available');
?>
--FILE--
<?php
$ph = new COMPersistHelper(null);
try {
    $ph->LoadFromStream(fopen(__FILE__, 'r'));
} catch (com_exception $ex) {
    // use hard-coded message to avoid localization issues
    echo "A com_exception has been thrown\n";
}
?>
--EXPECT--
A com_exception has been thrown