Skip to content

Commit

Permalink
Fix bug #81510
Browse files Browse the repository at this point in the history
Make the used arrays larger, because the previous sizes were not
slow enough on some hardware.
  • Loading branch information
nikic committed Oct 18, 2021
1 parent 6e9b764 commit 6974372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Zend/tests/bug74093.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ max_execution_time=1
hard_timeout=1
--FILE--
<?php
$a1 = range(1, 1000000);
$a2 = range(100000, 1999999);
$a1 = range(1, 2000000);
$a2 = range(100000, 2999999);
array_intersect($a1, $a2);
?>
--EXPECTF--
Expand Down

0 comments on commit 6974372

Please sign in to comment.