-
Notifications
You must be signed in to change notification settings - Fork 268
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
Feat: Add [STATestClass]
#3278
Feat: Add [STATestClass]
#3278
Conversation
|
||
try | ||
{ | ||
var threadTask = Task.Run(entryPointThread.Join); |
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.
I suppose we could use a TCS to avoid to waste a thread of the pool
try | ||
{ | ||
if (shouldRunClassCleanup) | ||
using LogMessageListener logListener = new(MSTestSettings.CurrentSettings.CaptureDebugTraces); |
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.
oh my broken friend...
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.
TCS aside looks fine
Given that we have other places in the code that need the same fix, I will merge this PR as-is and do a follow-up fixing the various locations. |
Replaces #3188 and fixes #2688