Added test case to complement commit 29397f8

This commit is contained in:
Tjerk Meesters 2014-09-06 18:56:22 +08:00
parent 9ab8605f8b
commit 47ac4612e9

View File

@ -0,0 +1,24 @@
--TEST--
Stress test $x .= $x
--FILE--
<?php
/*
* Test case for a concat_function() change that broke a test outside of Zend
*
* @see https://github.com/php/php-src/commit/29397f8fd2b4bc8d95e18448ca2d27a62241a407
**/
$result = 'f';
for ($i = 0; $i < 25; ++$i) {
$result .= $result;
}
var_dump(strlen($result));
echo "Done\n";
?>
--EXPECT--
int(33554432)
Done