summaryrefslogtreecommitdiff
path: root/Zend/tests/bug43450.phpt
blob: 05f2f7cbf6dafc38c25d9612a0a2536f375d1586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--TEST--
Bug #43450 (Memory leak on some functions with implicit object __toString() call)
--INI--
opcache.enable_cli=0
--FILE--
<?php

class Foo
{
    public function __toString()
	{
	    return __CLASS__;
	}
}

$num_repeats = 100000;

$start = memory_get_usage() / 1024;
for ($i=1;$i<$num_repeats;$i++)
{
	$foo = new Foo();
	md5($foo);
}
$end = memory_get_usage() / 1024;

if ($start + 16 < $end) {
	echo 'FAIL';
} else {
	echo 'PASS';
}

?>
--EXPECT--
PASS