summaryrefslogtreecommitdiff
path: root/ext/enchant/tests/bug13181.phpt
blob: a8b2501f615bf1251959fde81ec3cccfe432a8ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
--TEST--
bug #13181, leaving a context frees the broker resources
--SKIPIF--
<?php
if(!extension_loaded('enchant')) die('skip, enchant not loader');

 ?>
--FILE--
<?php
function get_dictionnary() {
    $rBroker = enchant_broker_init();
	$t = enchant_broker_request_dict($rBroker, 'en');
	var_dump($t);
    return $t;
}
$rDict = get_dictionnary();
var_dump($rDict);
enchant_dict_suggest($rDict, "soong");

function get_broker() {
    $t = enchant_broker_init();
	var_dump($t);
    return $t;
}

$rbroker = get_broker();
var_dump($rbroker);

function get_dict($broker) {
	$t = enchant_broker_request_dict($broker, 'en');
	var_dump($t);
    return $t;
}
$rDict = get_dict($rbroker);
var_dump($rDict);
?>
--EXPECTF--
resource(%d) of type (enchant_dict)
resource(%d) of type (enchant_dict)
resource(%d) of type (enchant_broker)
resource(%d) of type (enchant_broker)
resource(%d) of type (enchant_dict)
resource(%d) of type (enchant_dict)