mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
Fix warning in run-tests when PHP compiled without generating phpdbg support. (#10745)
This commit is contained in:
parent
e447036dc6
commit
3e6d49e042
@ -686,8 +686,8 @@ function main(): void
|
||||
$environment['TEST_PHP_CGI_EXECUTABLE_ESCAPED'] = escapeshellarg($php_cgi);
|
||||
putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
|
||||
$environment['TEST_PHPDBG_EXECUTABLE'] = $phpdbg;
|
||||
putenv("TEST_PHPDBG_EXECUTABLE_ESCAPED=" . escapeshellarg($phpdbg));
|
||||
$environment['TEST_PHPDBG_EXECUTABLE_ESCAPED'] = escapeshellarg($phpdbg);
|
||||
putenv("TEST_PHPDBG_EXECUTABLE_ESCAPED=" . escapeshellarg($phpdbg ?? ''));
|
||||
$environment['TEST_PHPDBG_EXECUTABLE_ESCAPED'] = escapeshellarg($phpdbg ?? '');
|
||||
|
||||
if ($conf_passed !== null) {
|
||||
if (IS_WINDOWS) {
|
||||
|
Loading…
Reference in New Issue
Block a user