File: 023-php-allocators.phpt

package info (click to toggle)
php-imagick 3.2.0~rc1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,516 kB
  • ctags: 1,105
  • sloc: ansic: 14,099; xml: 110; php: 83; sh: 10; makefile: 7
file content (20 lines) | stat: -rw-r--r-- 458 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Test PHP emalloc/erealloc/efree
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc');

if (!Imagick::USE_ZEND_MM)
	die ('skip Only active when compiled with --enable-imagick-zend-mm');
?>
--FILE--
<?php
ini_set ('memory_limit', '1M');

$im = new imagick ();
for ($i = 0; $i < 100; $i++)
	$im->readImage ('magick:rose');


?>
--EXPECTF--
Fatal error: Allowed memory size of %d bytes exhausted (tried to allocate %d bytes) in %s on line %d