From 02b90574955df9c058f8068bed8a285d6e065b85 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 13:35:53 +0000 Subject: [PATCH 1/2] Skip StartDetached_GrandchildSurvivesSignalingParent on Windows (refs #126936) The test flakes consistently on Windows in runtime-extra-platforms. Add [ActiveIssue] to skip it on Windows until the root cause is fixed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs b/src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs index afa66d916c2f5a..f7129caacd3fb5 100644 --- a/src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs +++ b/src/libraries/System.Diagnostics.Process/tests/ProcessTests.cs @@ -287,6 +287,7 @@ public void SignalHandler_CanDisposeInHandler(PosixSignal signal) RemoteExecutor.IsSupported; [ConditionalTheory(typeof(ProcessTests), nameof(IsNotNanoServerAndRemoteExecutorSupported))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/126936", TestPlatforms.Windows)] [InlineData(true)] [InlineData(false)] public void StartDetached_GrandchildSurvivesSignalingParent(bool enable) From 94903a0bee3c4ef1271fe8f5b699abfe1eb5f50c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 May 2026 13:35:59 +0000 Subject: [PATCH 2/2] ci: trigger checks