We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dae878 commit 6cd4dfbCopy full SHA for 6cd4dfb
run-tests.php
@@ -1260,6 +1260,13 @@ function system_with_timeout(
1260
) {
1261
global $valgrind;
1262
1263
+ // when proc_open cmd is passed as a string (without bypass_shell=true option) the cmd goes thru shell
1264
+ // and on Windows quotes are discarded, this is a fix to honor the quotes and allow values containing
1265
+ // spaces to be passed as 1 argument correctly
1266
+ if (IS_WINDOWS) {
1267
+ $commandline = 'start "" /b /wait ' . $commandline;
1268
+ }
1269
+
1270
$data = '';
1271
1272
$bin_env = [];
0 commit comments