php-src/Zend/tests/bug40770.phpt

23 lines
488 B
Plaintext
Raw Normal View History

--TEST--
2007-05-07 17:23:53 +00:00
Bug #40770 (Apache child exits when PHP memory limit reached)
--INI--
2007-04-11 22:35:25 +00:00
memory_limit=8M
--SKIPIF--
<?php
$zend_mm_enabled = getenv("USE_ZEND_ALLOC");
if ($zend_mm_enabled === "0") {
die("skip Zend MM disabled");
}
?>
--FILE--
<?php
ini_set('display_errors',true);
$mb=148;
$var = '';
for ($i=0; $i<=$mb; $i++) {
$var.= str_repeat('a',1*1024*1024);
}
?>
--EXPECTF--
2007-04-11 22:35:25 +00:00
Fatal error: Allowed memory size of 8388608 bytes exhausted%s(tried to allocate %d bytes) in %s on line %d