com php-src: Make it slower: Zend/tests/bug74093.phpt
[email protected] (Xinchen Hui)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 8d94d5d94223ffd9797eec0a209df0423b3a350f Author: Xinchen Hui <[email protected]> Wed, 15 Feb 2017 15:27:21 +0800 Parents: dad5281a8995931d0a1b454b2d5509524574f0cd Branches: PHP-7.1 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=8d94d5d94223ffd9797eec0a209df0423b3a350f Log: Make it slower Changed paths: M Zend/tests/bug74093.phpt Diff: diff --git a/Zend/tests/bug74093.phpt b/Zend/tests/bug74093.phpt index b4c41c9..d01f8e9 100644 --- a/Zend/tests/bug74093.phpt +++ b/Zend/tests/bug74093.phpt @@ -10,7 +10,7 @@ max_execution_time=1 hard_timeout=1 --FILE-- <?php -$a1 = range(1, 100000); +$a1 = range(1, 1000000); $a2 = range(100000, 999999); array_intersect($a1, $a2); ?>