-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Filter optprof to specific tests #35700
Conversation
e2470ce
to
1bf8ec6
Compare
- Check opt prof file is valid via build boss - Update OptProf.json with errors found
1d84e8c
to
d44241e
Compare
|
||
// validate that each vsix listed in it is valid | ||
bool allGood = true; | ||
foreach (var product in optProfFile["products"]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider an error if this collection is empty
foreach (var filteredTest in filteredTests) | ||
{ | ||
var filename = filteredTest["filename"].ToString(); | ||
if (!manifestFileNames.Contains(filename)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: this means the file name comparison is ordinal. Is that intentional? Seems okay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
e32bdfc
to
d31ae09
Compare
d31ae09
to
e32bdfc
Compare
No description provided.