-
Notifications
You must be signed in to change notification settings - Fork 561
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
Fix UpnEndpointIdentity on UWP #1502
Conversation
// If WindowsIdentity isn't supported, then we can't | ||
// retrieve the SecurityIdentifier's to compare so | ||
// must return false | ||
return false; |
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 guess this is going to be a necessary evil in order for UWP to work... we however need to clearly show this in the release notes.
LGTM |
@@ -258,12 +255,36 @@ int IEqualityComparer.GetHashCode(object obj) | |||
} | |||
} | |||
|
|||
#if SUPPORTS_WINDOWSIDENTITY | |||
//#if SUPPORTS_WINDOWSIDENTITY |
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.
Remove this line?
LGTM. |
PR dotnet#1502 fixed issue dotnet#10 by implementing UpnEndpointIdentity. But 2 tests were still disabled by issue 10, so this PR just re-enables those tests. Both require manual setup to run, so we will not see them pass or fail in CI or VSO.
PR dotnet#1502 fixed issue dotnet#10 by implementing UpnEndpointIdentity. But 2 tests were still disabled by issue 10, so this PR just re-enables those tests. Both require manual setup to run, so we will not see them pass or fail in CI or VSO. These tests still fail in UWP and so remain disabled there.
Fix UpnEndpointIdentity on UWP Re-enable tests disabled by issue 10, except for NET Native. PR dotnet#1502 fixed issue dotnet#10 by implementing UpnEndpointIdentity. But 2 tests were still disabled by issue 10, so this PR just re-enables those tests. Both require manual setup to run, so we will not see them pass or fail in CI or VSO. These tests still fail in UWP and so remain disabled there.
Fix UpnEndpointIdentity on UWP Re-enable tests disabled by issue 10, except for NET Native. PR dotnet#1502 fixed issue dotnet#10 by implementing UpnEndpointIdentity. But 2 tests were still disabled by issue 10, so this PR just re-enables those tests. Both require manual setup to run, so we will not see them pass or fail in CI or VSO. These tests still fail in UWP and so remain disabled there.
Fixes #1454