Skip to content
Open
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 @@ -330,6 +330,7 @@ public void DualModeConnect_IPAddressListToHost_Success(IPAddress[] connectTo, I
[Trait("IPv4", "true")]
[Trait("IPv6", "true")]
[SkipOnPlatform(TestPlatforms.Wasi, "Wasi doesn't support DualMode")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127986", TestPlatforms.Android)]
public class DualModeConnectToHostString : DualModeBase
{
[ConditionalTheory(typeof(DualModeConnectToHostString), nameof(LocalhostIsBothIPv4AndIPv6))]
Expand All @@ -349,6 +350,7 @@ public void DualModeConnect_LoopbackDnsToHost_Helper(IPAddress listenOn, bool du
[Trait("IPv4", "true")]
[Trait("IPv6", "true")]
[SkipOnPlatform(TestPlatforms.Wasi, "Wasi doesn't support DualMode")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127986", TestPlatforms.Android)]
public class DualModeConnectToDnsEndPoint : DualModeBase
{
[ConditionalTheory(typeof(DualModeConnectToDnsEndPoint), nameof(LocalhostIsBothIPv4AndIPv6))]
Expand Down Expand Up @@ -520,6 +522,7 @@ public async Task DualModeBeginConnect_DnsEndPointToHost_Helper(IPAddress listen
[Trait("IPv4", "true")]
[Trait("IPv6", "true")]
[SkipOnPlatform(TestPlatforms.Wasi, "Wasi doesn't support DualMode")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/127986", TestPlatforms.Android)]
public class DualModeConnectAsync : DualModeBase
{
[Fact] // Base case
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/127986", TestPlatforms.Android)]
public void Connect_Parallel_FailsOver(bool preferIPv6)
{
using PortBlocker portBlocker = new PortBlocker(() =>
Expand Down
Loading