Annotation of embedaddon/php/Zend/tests/bug34617.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #34617 (zend_deactivate: objects_store used after zend_objects_store_destroy is called) 
        !             3: --SKIPIF--
        !             4: <?php if (!extension_loaded("xml")) print "skip the xml extension not available"; ?>
        !             5: --FILE--
        !             6: <?php
        !             7: class Thing {}
        !             8: function boom()
        !             9: {
        !            10:     $reader = xml_parser_create();
        !            11:     xml_set_object($reader, new Thing());
        !            12:     die("ok\n");
        !            13:     xml_parser_free($reader);
        !            14: }
        !            15: boom();
        !            16: ?>
        !            17: --EXPECT--
        !            18: ok

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>