From 4337cf58de2f45f312498454881a30db197803ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 18:27:33 +0000 Subject: [PATCH 1/3] Skip AsyncProfilerTests on Android and tvOS (refs #127951) The AsyncProfilerTests.RuntimeAsync_* tests consistently fail on android-arm64 and tvos-arm64 because EventPipe async profiler events are not emitted on mobile platforms, causing assertion and collection-empty failures. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../System.Runtime.CompilerServices/AsyncProfilerTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs b/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs index 2917970417434e..5ee4a7c9dcdcd5 100644 --- a/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs +++ b/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs @@ -32,6 +32,7 @@ public enum AsyncEventID : byte AsyncProfilerSyncClock = 14, } + [ActiveIssue("https://github.com/dotnet/runtime/issues/127951", TestPlatforms.Android | TestPlatforms.tvOS)] public class AsyncProfilerTests { // The test scenarios drive async work via Task.Run(...).GetAwaiter().GetResult() (see From 05ace884753095ea209279c3ec8001e13e2e95ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 8 May 2026 18:27:38 +0000 Subject: [PATCH 2/3] ci: trigger checks From 0a8db57dedb4e6ac93b1843e32d5204aaebfe1b6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 12:43:57 +0000 Subject: [PATCH 3/3] Skip AsyncProfilerTests on iOS and MacCatalyst too Co-authored-by: kotlarmilos <11523312+kotlarmilos@users.noreply.github.com> --- .../System.Runtime.CompilerServices/AsyncProfilerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs b/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs index 5ee4a7c9dcdcd5..f568579d8782f2 100644 --- a/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs +++ b/src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/System.Runtime.CompilerServices/AsyncProfilerTests.cs @@ -32,7 +32,7 @@ public enum AsyncEventID : byte AsyncProfilerSyncClock = 14, } - [ActiveIssue("https://github.com/dotnet/runtime/issues/127951", TestPlatforms.Android | TestPlatforms.tvOS)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/127951", TestPlatforms.Android | TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)] public class AsyncProfilerTests { // The test scenarios drive async work via Task.Run(...).GetAwaiter().GetResult() (see