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

1.1     ! misho       1: --TEST--
        !             2: Bug #36568 (memory_limit has no effect)
        !             3: --SKIPIF--
        !             4: <?php 
        !             5:        if (!function_exists('memory_get_usage')) die('skip PHP is configured without memory_limit');
        !             6: ?>
        !             7: --INI--
        !             8: memory_limit=16M
        !             9: --FILE--
        !            10: <?php
        !            11: ini_set("memory_limit", "32M");
        !            12: echo ini_get("memory_limit");
        !            13: ?>
        !            14: --EXPECT--
        !            15: 32M

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