Skip to content
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

[Android] Resolve Android-specific active issues in System.Net.Security and System.Security.Cryptography #104352

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix expected outcome of TransportContext_ConnectToServerWithSsl_GetEx…
…pectedChannelBindings for Android
  • Loading branch information
simonrozsival committed Jul 3, 2024
commit a17bdec4446034267af3f564b629ea9b81995f7b
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ namespace System.Net.Security.Tests
public class TransportContextTest
{
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/68206", TestPlatforms.Android)]
public async Task TransportContext_ConnectToServerWithSsl_GetExpectedChannelBindings()
{
(Stream clientStream, Stream serverStream) = TestHelper.GetConnectedStreams();
Expand Down Expand Up @@ -50,6 +49,10 @@ private static void CheckTransportContext(TransportContext context)
{
Assert.True(cbt2 == null, "ChannelBindingKind.Unique token data is not expected on OSX platform.");
}
else if (OperatingSystem.IsAndroid())
simonrozsival marked this conversation as resolved.
Show resolved Hide resolved
{
Assert.True(cbt2 == null, "ChannelBindingKind.Unique token data is not expected on Android platform.");
}
else
{
Assert.True(cbt2 != null, "ChannelBindingKind.Unique token data should be returned.");
Expand Down
Loading