-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Add host tests for asset resolution behaviour without fallback graph #83434
Conversation
Tagging subscribers to this area: @vitek-karas, @agocke, @VSadov Issue Details
Slightly tweaked probe config logging: before
after
|
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.
LGTM - Thanks!
@@ -40,102 +34,113 @@ protected RidAssetResolutionBase(SharedTestState sharedState) | |||
[InlineData("win10-x64", WindowsAssembly, $"{LinuxAssembly};{MacOSAssembly}")] | |||
[InlineData("linux-x64", LinuxAssembly, $"{MacOSAssembly};{WindowsAssembly}")] | |||
[InlineData("osx-x64", MacOSAssembly, $"{LinuxAssembly};{WindowsAssembly}")] | |||
public void RidSpecificAssembly(string rid, string includedPath, string excludedPath) | |||
public void RidSpecificAssembly(string rid, string includedPath, string excludedPath, bool hasRuntimeFallbacks = true) |
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.
Subjective - Presonally I would prefer to add a new method overload and call the "private" one from other places. I just don't like that a method is both a test and also called from another test.
probe_config_t
to hopefully make it clearer what each instance is forSlightly tweaked probe config logging:
before
after