summaryrefslogtreecommitdiff
path: root/Zend/tests/object_gc_in_shutdown.phpt
blob: d55c08dfb1816880e06c19d886a45d915b0c6dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug object gc not working in shutdown
--FILE--
<?php
ini_set('memory_limit', '2M');
register_shutdown_function(function () {
    for ($n = 1000 * 1000; $n--;) {
        new stdClass;
    }
    echo "OK\n";
});
?>
--EXPECT--
OK