We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e447036 commit 3e6d49eCopy full SHA for 3e6d49e
run-tests.php
@@ -686,8 +686,8 @@ function main(): void
686
$environment['TEST_PHP_CGI_EXECUTABLE_ESCAPED'] = escapeshellarg($php_cgi);
687
putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
688
$environment['TEST_PHPDBG_EXECUTABLE'] = $phpdbg;
689
- putenv("TEST_PHPDBG_EXECUTABLE_ESCAPED=" . escapeshellarg($phpdbg));
690
- $environment['TEST_PHPDBG_EXECUTABLE_ESCAPED'] = escapeshellarg($phpdbg);
+ putenv("TEST_PHPDBG_EXECUTABLE_ESCAPED=" . escapeshellarg($phpdbg ?? ''));
+ $environment['TEST_PHPDBG_EXECUTABLE_ESCAPED'] = escapeshellarg($phpdbg ?? '');
691
692
if ($conf_passed !== null) {
693
if (IS_WINDOWS) {
0 commit comments