Skip to content

Commit d09df2a

Browse files
committed
Merge branch 'PHP-8.1'
* PHP-8.1: fileinfo: Capture more sizes for test as delivered by travis-ci fileinfo: Capture more sizes for test as delivered by AppVeyor
2 parents 429b604 + 62bfadc commit d09df2a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ext/fileinfo/tests/bug78987.phpt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ $minSize = 128 * 1024;
1111
$maxSize = 16 * 1024 * 1024;
1212

1313
$map = array(
14-
131072 => 2097152,
15-
262144 => 2097152,
16-
524288 => 4194304,
17-
1048576 => 4194304,
18-
2097152 => 6295552,
19-
4194304 => 10493952,
20-
8388608 => 16785408,
21-
16777216 => 29368320,
14+
131072 => 9113600,
15+
262144 => 9113600,
16+
524288 => 9113600,
17+
1048576 => 11210752,
18+
2097152 => 13312000,
19+
4194304 => 17510400,
20+
8388608 => 23801856,
21+
16777216 => 36384768,
2222
);
2323
for($size = $minSize; $size <= $maxSize; $size *= 2) {
2424
$content = str_repeat('0', $size);

0 commit comments

Comments
 (0)