xunit / visualstudio.xunit

VSTest runner for xUnit.net (for Visual Studio Test Explorer and dotnet test)
https://xunit.net/
Other
144 stars 81 forks source link

Fix concurrency bug in AssemblyHelper #407

Closed wangzq closed 4 months ago

wangzq commented 4 months ago

AssemblyResolve event could be triggered from multiple threads, so using a normal Dictionary may cause infinite loop when TryGetValue is being called and another thread has corrupted its internal state, replace it with ConcurrentDictionary.

bradwilson commented 4 months ago

Thanks!