php-src/ext/enchant/tests/bug13181.phpt

61 lines
1.2 KiB
Plaintext
Raw Normal View History

2008-04-16 09:41:05 +00:00
--TEST--
bug #13181, leaving a context frees the broker resources
--SKIPIF--
2018-10-14 15:45:48 +00:00
<?php
if (!extension_loaded('enchant')) {
echo "skip: Enchant extension not enabled\n";
exit;
}
$broker = enchant_broker_init();
if (!$broker) {
echo "skip: Unable to init broker\n";
exit;
}
2008-04-16 09:41:05 +00:00
if (!enchant_broker_list_dicts($broker)) {
enchant_broker_free($broker);
echo "skip: No broker dicts installed\n";
}
enchant_broker_free($broker);
?>
2008-04-16 09:41:05 +00:00
--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)