-
Notifications
You must be signed in to change notification settings - Fork 333
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
Fixed testhost crash for net7 #4112
Fixed testhost crash for net7 #4112
Conversation
Please provide more information about the fix and the reasoning the description. |
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.
As I said during our talk, this seems to be working but I am quite worried this will end up reverted like the DOTNET_ROOT update I did because we are too far away from understanding all the scenario.
src/Microsoft.TestPlatform.PlatformAbstractions/common/System/ProcessHelper.cs
Outdated
Show resolved
Hide resolved
...tPlatform.Client/AttachmentsProcessing/InProcessTestRunAttachmentsProcessingEventsHandler.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.TestPlatform.PlatformAbstractions/common/System/ProcessHelper.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.TestPlatform.PlatformAbstractions/common/System/ProcessHelper.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.TestPlatform.PlatformAbstractions/common/System/ProcessHelper.cs
Show resolved
Hide resolved
test/vstest.console.UnitTests/InProcessVsTestConsoleWrapperTests.cs
Outdated
Show resolved
Hide resolved
…ProcessHelper.cs Co-authored-by: Jakub Jareš <[email protected]>
…thub.com/cvpoienaru/vstest into dev/copoiena/testhost-crash-net7-preview
@@ -49,7 +50,7 @@ | |||
<ProjectReference Include="..\Microsoft.TestPlatform.ObjectModel\Microsoft.TestPlatform.ObjectModel.csproj" /> | |||
<ProjectReference Include="..\Microsoft.TestPlatform.Client\Microsoft.TestPlatform.Client.csproj" /> | |||
<ProjectReference Include="..\Microsoft.TestPlatform.CommunicationUtilities\Microsoft.TestPlatform.CommunicationUtilities.csproj" /> | |||
<ProjectReference Include="..\Microsoft.TestPlatform.PlatformAbstractions\Microsoft.TestPlatform.PlatformAbstractions.csproj" /> | |||
<ProjectReference Include="..\Microsoft.TestPlatform.PlatformAbstractions\Microsoft.TestPlatform.PlatformAbstractions.csproj" Aliases="Abstraction" /> |
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.
Hack to work around the issue where nullable attributes are coming from both PlatformAbstractions and CoreUtilities. We have tried to solve it in a better way but that was leading to too complex refactoring. Using the alias trick helps to isolate what's coming from this assembly.
Note that I hope to remove such hack by using a source generator for the polyfill (@MarcoRossignoli do you remember the name of the project?)
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.
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. Please wait for approval from @nohwnd and @MarcoRossignoli before merging (I have disabled auto-merge).
I would prefer to not propagate the inherit flag all the way down to ProcessHelper, instead the code that sets the variables (in wrapper) should check what the preference is and either provide just what it was given (inherit=false), or merge it with the current set of env variables (inherit=true) and set that to ExternalEnvVariables. This way providing external env variables will work the same no matter if we are inheriting or not in terms of updates etc. |
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.
Pls @cvpoienaru when you have a pair of hours can you add the explanation of the in-process working with this "details" here https://github.com/microsoft/vstest-docs/tree/main/RFCs
And maybe after link in the code here, for future devs, we're moving in different context and this repo doesn't have any information of the other world.
Follow up: #4119 |
This PR fixes two issues:
TestWindowStoreHost
process), certain environment variables such asDOTNET_ROOT
andDOTNET_MULTILEVEL_LOOKUP
are set. We cannot unset them because that would change the behavior of theTestWindowStoreHost
process, but we certainly need them unset for dotnet runtime resolution to be successful. AppDomains provide no isolation since environment variables are shared at the process level. The simplest and most elegant solution is to set theVSTEST_WINAPPHOST_DOTNET_ROOT
and this would provide successful resolution. More info aboutVSTEST_WINAPPHOST_DOTNET_ROOT
can be found here.Error here:
Error here: