-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add windows stylearguments format to coreclr test scripts (#91600)
For some reason lost in the past, the generated Windows and Unix coreclr test scripts use different style of options passing. On windows, the option and its value are passed separated by space, e.g. `-coreroot c:\runtime\coreclr` while Unix separate them by `=`, e.g. `-coreroot=~/runtime/coreclr`. The Unix way has a disadvantage when I try to use command line completion to find the coreroot path I want to pass in. Most shells try to treat the `-coreroot=` as part of the path and so the completion doesn't work. So I keep doing an awkward thing - putting space after the `=` and deleting it after the completion. This change adds the windows style option passing as an optional way to these scripts.
- Loading branch information
Showing
1 changed file
with
53 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters