Skip to content

Commit 5339776

Browse files
committed
always require EXTENSIONS to be specified in LC
1 parent 24ce410 commit 5339776

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
@@ -2022,7 +2022,7 @@ function run_test(string $php, $file, array $env): string
20222022
$ext_prefix = IS_WINDOWS ? "php_" : "";
20232023
$missing = [];
20242024
foreach ($extensions as $req_ext) {
2025-
if (!in_array(strtolower($req_ext), $loaded)) {
2025+
if (!in_array($req_ext, $loaded, true)) {
20262026
if ($req_ext == 'opcache' || $req_ext == 'xdebug') {
20272027
$ext_file = $ext_dir . DIRECTORY_SEPARATOR . $ext_prefix . $req_ext . '.' . PHP_SHLIB_SUFFIX;
20282028
$ini_settings['zend_extension'][] = $ext_file;

0 commit comments

Comments
 (0)