-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Fix GH-10489: run-tests.php does not escape path when building cmd #10560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
7a0635a
to
8cd9090
Compare
d77cb70
to
cbc10c6
Compare
I applied @Girgias 's feedback and everything's green :). |
c25e501
to
8dae878
Compare
Can you please rebase this onto master, as trying to merge this upwards is a massive hassle and I don't think it's really worth it to fix in release versions... |
Finally rebased this on master. |
Windows seems to be failing for reasons |
Is it possible to retrigger Windows alone, or should I just rerun all of CI by doing rebase+force push? |
I don't think I can retrigger appveyor sadly :/ |
Multiple tests had to be changed to escape the arguments in shell commands. Some tests are skipped because they behave differently with spaces in the path versus without. One notable example of this is the hashbang test which does not work because spaces in hashbangs paths are not supported in Linux.
Thank you! |
Fixes GH-10489
Multiple tests had to be changed to escape the arguments in shell
commands. Some tests are skipped because they behave differently with
spaces in the path versus without. One notable example of this is the
hashbang test which does not work because spaces in hashbangs paths are
not supported in Linux.