From a0b9ef846ed66a91dadaee7da23e2e8cf8f20129 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 01:41:53 +0000 Subject: [PATCH 1/2] Skip SocketBlockingModeTransitionTests.ConnectAsync_WithBuffer_Succeeds on Android (refs #128141) The test consistently fails on Android with Assert.False() Failure because IsSocketNonBlocking returns True unexpectedly after ConnectAsync with buffer. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../System.Net.Sockets/tests/FunctionalTests/Connect.Unix.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.Unix.cs b/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.Unix.cs index 6a15e23d25a814..b82fb745ae9766 100644 --- a/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.Unix.cs +++ b/src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.Unix.cs @@ -3,6 +3,7 @@ using System.Net.Sockets; using System.Threading.Tasks; +using Microsoft.DotNet.XUnitExtensions; using Xunit; namespace System.Net.Sockets.Tests @@ -193,6 +194,7 @@ public async Task AcceptAsync_ConcurrentAccepts_DoNotCorruptListenerState() Assert.False(IsSocketNonBlocking(accepted2)); } + [ActiveIssue("https://github.com/dotnet/runtime/issues/128141", TestPlatforms.Android)] [Fact] public async Task ConnectAsync_WithBuffer_Succeeds() { From 07bbeb5e981aa08660f7c5aede13460ebb6db446 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 May 2026 01:41:58 +0000 Subject: [PATCH 2/2] ci: trigger checks