File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug36568.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:52 2012 UTC (13 years, 2 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Bug #36568 (memory_limit has no effect)
--SKIPIF--
<?php 
	if (!function_exists('memory_get_usage')) die('skip PHP is configured without memory_limit');
?>
--INI--
memory_limit=16M
--FILE--
<?php
ini_set("memory_limit", "32M");
echo ini_get("memory_limit");
?>
--EXPECT--
32M

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