Skip to content

Commit b401001

Browse files
committed
always require EXTENSIONS to be specified in LC
1 parent 43eef20 commit b401001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2020,7 +2020,7 @@ function run_test(string $php, $file, array $env): string
20202020
$ext_prefix = IS_WINDOWS ? "php_" : "";
20212021
$missing = [];
20222022
foreach ($extensions as $req_ext) {
2023-
if (!in_array(strtolower($req_ext), $loaded)) {
2023+
if (!in_array($req_ext, $loaded, true)) {
20242024
if ($req_ext == 'opcache' || $req_ext == 'xdebug') {
20252025
$ext_file = $ext_dir . DIRECTORY_SEPARATOR . $ext_prefix . $req_ext . '.' . PHP_SHLIB_SUFFIX;
20262026
$ini_settings['zend_extension'][] = $ext_file;

0 commit comments

Comments
 (0)