-
Notifications
You must be signed in to change notification settings - Fork 272
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
Disallowing using COMPlus_ has the prefix for environment variables. #3815
Conversation
This reverts commit 0d3885d.
@@ -2,12 +2,12 @@ runs: | |||
baseline: | |||
corerun: C:\CoreRuns\Empty\ | |||
environment_variables: | |||
COMPlus_GCServer: 1 | |||
DOTNET_GCServer: 1 |
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.
actually this is gcServer
instead of GCServer
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.
otherwise LGTM
Co-authored-by: Maoni Stephens <Maoni0@users.noreply.github.com>
what is the motivation for this change? Just to keep things consistent? |
NativeAOT doesn't allow for COMPlus variables and we didn't want to add additional logic in the infra to differentiate. considering our testing is now .NET 6 and onwards, we decided to exclusively make use of DOTNET_*. |
makes sense |
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.
Fixed all instances of GCServer -> gcServer
Disallowing using COMPlus_ has the prefix for environment variables and therefore, this PR entails: