Skip to content

Commit bc8a95e

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: [skip ci] Harden bug74093.phpt
2 parents eca83d2 + 486c09c commit bc8a95e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Zend/tests/bug74093.phpt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
--TEST--
22
Bug #74093 (Maximum execution time of n+2 seconds exceed not written in error_log)
3+
--FLAKY--
34
--SKIPIF--
45
<?php
56
if (!getenv('RUN_RESOURCE_HEAVY_TESTS')) die('skip resource-heavy test');
@@ -13,8 +14,8 @@ max_execution_time=1
1314
hard_timeout=1
1415
--FILE--
1516
<?php
16-
$a1 = range(1, 2000000);
17-
$a2 = range(100000, 2999999);
17+
$a1 = range(1, 3000000);
18+
$a2 = range(100000, 3999999);
1819
array_intersect($a1, $a2);
1920
?>
2021
--EXPECTF--

0 commit comments

Comments
 (0)