-
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
[libraries][tvOS] Update Issue causing System.Net.Requests to fail #56624
[libraries][tvOS] Update Issue causing System.Net.Requests to fail #56624
Conversation
Do you have link to the failed test run? Is it happening on both iOS and tvOS, or only on tvOS? (the code path is different due to lack of NT authentication on tvOS) |
It was ran locally and crashed #56621 |
That seems to be a genuine bug on these lines: Lines 15 to 16 in 03211e3
The |
...s/System.Net.Http/src/System/Net/Http/SocketsHttpHandler/AuthenticationHelper.NtAuth.tvOS.cs
Outdated
Show resolved
Hide resolved
Re:
I'm not sure where tvOS and iOS are differing since the iOS tests pass.
So |
It was confirmed that
System.Net.Requests
no longer fails forSystem.IO.DirectoryNotFoundException
.However, the tests still crash due to an assert error with
System.Net.Http.AuthenticationHelper.SendWithAuthAsync
.By not defaulting
preauthenticate
parameter inSendWithRequestAuthAsync
call inInnerSendAsync
ofAuthenticationHelper.NtAuth.tvOS.cs
to true, the assert error no longer crashes tests.Fixes #56621
Instead, now there are failures with regards to
This PR does the following:
Modifies the default authentication parameters in
AuthenticationHelper.NtAuth.tvOS.cs
Removes the test suite project level skip
Adds active issues to the two failing tests for tvOS #56798
Conditions two tests that fail for BinaryFormatter not supported reasons.