-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Disable System.Text.Json.Tests suite on interp with debug runtime #101483
Conversation
Interpreter gets very slow on debug builds and this suite can also timeout.
Tagging subscribers to this area: @dotnet/area-system-text-json, @gregsdennis |
using System; | ||
using Xunit; | ||
|
||
[assembly: ActiveIssue("Interpreter with debug runtime can be very slow", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter), nameof(PlatformDetection.IsDebugRuntime))] |
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.
@akoeplinger Not sure if we have a better flag here. I think having a tracking issue is redundant since it is not something worth addressing in my opinion.
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.
Yeah I checked and we don't have a better way right now since all of the Conditional*
attributes can't be applied to assembly. I'm fine with this.
using System; | ||
using Xunit; | ||
|
||
[assembly: ActiveIssue("Interpreter with debug runtime can be very slow", typeof(PlatformDetection), nameof(PlatformDetection.IsMonoInterpreter), nameof(PlatformDetection.IsDebugRuntime))] |
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.
Yeah I checked and we don't have a better way right now since all of the Conditional*
attributes can't be applied to assembly. I'm fine with this.
…tnet#101483) Interpreter gets very slow on debug builds and this suite can also timeout.
…tnet#101483) Interpreter gets very slow on debug builds and this suite can also timeout.
Interpreter gets very slow on debug builds and this suite can also timeout.