summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/tests/bug78694.phpt
blob: adf0c828cacb10289313a16d4a19110019a7df61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Bug #78694 (Appending to a variant array causes segfault)
--SKIPIF--
<?php
if (!extension_loaded('com_dotnet')) die('skip com_dotnet extension not available');
?>
--FILE--
<?php
foreach ([new com('WScript.Shell'), new variant([])] as $var) {
    try {
        $var[] = 42;
    } catch (com_exception $ex) {
        var_dump($ex->getMessage());
    }
}
?>
--EXPECT--
string(38) "appending to variants is not supported"
string(38) "appending to variants is not supported"