php-src/Zend/tests/bug34617.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

20 lines
340 B
PHP

--TEST--
Bug #34617 (zend_deactivate: objects_store used after zend_objects_store_destroy is called)
--EXTENSIONS--
xml
--FILE--
<?php
class Thing {}
function boom()
{
$reader = xml_parser_create();
$thing = new Thing();
xml_set_object($reader, $thing);
die("ok\n");
xml_parser_free($reader);
}
boom();
?>
--EXPECT--
ok