mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Always exclude dl_test from test php.ini (GH-16098)
The dl_test extension is not supposed to be loaded via php.ini settings, so we exclude it from the typical case on Windows where `--enable-test-ini` is enabled by `--enable-snapshot-build`.
This commit is contained in:
committed by
GitHub
parent
95fa39dce8
commit
57c4b941b7
@@ -2014,7 +2014,7 @@ function generate_tmp_php_ini()
|
||||
var INI = FSO.CreateTextFile(PHP_TEST_INI_PATH, true);
|
||||
}
|
||||
|
||||
var ext_list = PHP_TEST_INI_EXT_EXCLUDE.split(",");
|
||||
var ext_list = ("dl_test," + PHP_TEST_INI_EXT_EXCLUDE).split(",");
|
||||
INI.WriteLine("extension_dir=" + ini_dir);
|
||||
for (var i in extensions_enabled) {
|
||||
if ("shared" != extensions_enabled[i][1]) {
|
||||
|
||||
Reference in New Issue
Block a user