Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ public async Task AcceptAsync_ConcurrentAccepts_DoNotCorruptListenerState()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127565", TestPlatforms.Android)]
public async Task ConnectAsync_WithBuffer_Succeeds()
{
using Socket listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ public class DualModeConnectToHostString : DualModeBase
{
[ConditionalTheory(typeof(DualModeConnectToHostString), nameof(LocalhostIsBothIPv4AndIPv6))]
[MemberData(nameof(DualMode_Connect_IPAddress_DualMode_Data))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127565", TestPlatforms.Android)]
public void DualModeConnect_LoopbackDnsToHost_Helper(IPAddress listenOn, bool dualModeServer)
{
using (Socket socket = new Socket(SocketType.Stream, ProtocolType.Tcp))
Expand All @@ -353,6 +354,7 @@ public class DualModeConnectToDnsEndPoint : DualModeBase
{
[ConditionalTheory(typeof(DualModeConnectToDnsEndPoint), nameof(LocalhostIsBothIPv4AndIPv6))]
[MemberData(nameof(DualMode_Connect_IPAddress_DualMode_Data))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127565", TestPlatforms.Android)]
public void DualModeConnect_DnsEndPointToHost_Helper(IPAddress listenOn, bool dualModeServer)
{
using (Socket socket = new Socket(SocketType.Stream, ProtocolType.Tcp))
Expand Down Expand Up @@ -613,6 +615,7 @@ private void DualModeConnectAsync_IPEndPointToHost_Fails_Helper(IPAddress connec

[ConditionalTheory(typeof(DualModeConnectAsync), nameof(LocalhostIsBothIPv4AndIPv6))]
[MemberData(nameof(DualMode_Connect_IPAddress_DualMode_Data))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127565", TestPlatforms.Android)]
public void DualModeConnectAsync_DnsEndPointToHost_Helper(IPAddress listenOn, bool dualModeServer)
{
using (Socket socket = new Socket(SocketType.Stream, ProtocolType.Tcp))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1160,6 +1160,7 @@ public void Connect_Parallel_Fails()
[InlineData(true)]
[InlineData(false)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/124079", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127565", TestPlatforms.Android)]
public void Connect_Parallel_FailsOver(bool preferIPv6)
{
using PortBlocker portBlocker = new PortBlocker(() =>
Expand Down
Loading