Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
In Windows batch file execution, a comma is one of the magic parameter delimiters. To pass a comma as parameter data, you have to use string quotes around that parameter, like:
.\Tools\buildbot\test.bat -M33g "-uall,extralargefile" test_zipfile64However, now the quotes become part of the parameter. Insidetest.bat we employ some command-line parsing and shifting, which requires us toremove the quotes from parameters, if any, for the code to continue working.
This is doubly complicated by the fact thattest.bat passes execution tort.bat, which does similar parsing there. The fix is needed there, too.