-
Notifications
You must be signed in to change notification settings - Fork 5k
Fix Out of memory with source gen tests #88266
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
Conversation
/azp run runtime-coreclr libraries-jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
Related: #87934 |
/azp run runtime-coreclr libraries-jitstress |
Azure Pipelines successfully started running 1 pipeline(s). |
@CyrusNajmabadi could you please have a look? CC @jaredpar |
Tagging subscribers to this area: @dotnet/area-extensions-logging Issue DetailsFixes #87934
|
The unrelated failure in the jitstress is tracked by #88224 |
@@ -215,7 +228,8 @@ public static TextSpan MakeSpan(string text, int spanNum) | |||
string? defaultNamespace = null, | |||
string? extraFile = null) | |||
{ | |||
Project proj = CreateTestProject(references); | |||
using var workspace = CreateTestWorkspace(); |
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.
For my education, OOM's were triggered by AdhocWorkspace
instances not being disposed?
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.
that is right
Fixes #87934