Skip to content

Commit 6974372

Browse files
committed
Fix bug #81510
Make the used arrays larger, because the previous sizes were not slow enough on some hardware.
1 parent 6e9b764 commit 6974372

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/tests/bug74093.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ max_execution_time=1
1212
hard_timeout=1
1313
--FILE--
1414
<?php
15-
$a1 = range(1, 1000000);
16-
$a2 = range(100000, 1999999);
15+
$a1 = range(1, 2000000);
16+
$a2 = range(100000, 2999999);
1717
array_intersect($a1, $a2);
1818
?>
1919
--EXPECTF--

0 commit comments

Comments
 (0)