You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I originally saw crashes in Package_Unsupported_NTLM, but looks like everything crashes. So just disable on Linux in general. This time I'll actually run outerloop to verify :(
I originally saw crashes in Package_Unsupported_NTLM, but looks like everything crashes. So just disable on Linux in general. This time I'll run outerloop to verify :(
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the ActiveIssue attribute for NegotiateAuthenticationTests to skip all tests in the class on Native AOT + Linux, rather than just skipping a single test. The author discovered that the crashes were not limited to just the Package_Unsupported_NTLM test, but affect the entire test suite.
Changes:
Moved ActiveIssue from specific test method to the entire test class
Broadened the platform condition from just NativeAot to NativeAot AND Linux
Removed the previous method-level ActiveIssue attribute
I think we should disable the tests only on the affected OSes, from what I can see from the Kusto DB, the crashes are on Ubuntu 26, likely due to a buggy gss-ntlmssp on the system, we have seen the same on Ubuntu 24 I believe: #113414 .
I think we should disable the tests only on the affected OSes, from what I can see from the Kusto DB, the crashes are on Ubuntu 26, likely due to a buggy gss-ntlmssp on the system, we have seen the same on Ubuntu 24 I believe: #113414 .
AFAIK there's no native AOT specific logic in these codepaths. So the only test coverage we're losing is "random code hits a random bug in native AOT" (i.e. we're looking for native AOT runtime/compiler bugs, not System.Net.Security bugs since those are covered with CoreCLR-JIT).
I'm fine losing this small piece of native AOT coverage if it means I will not have to come back to this and tweak the list before #123472 is fixed. I don't think anyone from dotnet/ncl monitors native AOT outerloops because I always have to do this myself and this is just one of the manymanymanymanymanymany issues that showed up in native AOT outerloops just in the last two weeks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I originally saw crashes in Package_Unsupported_NTLM, but looks like everything crashes. So just disable on Linux in general. This time I'll actually run outerloop to verify :(