From c9f521fec0b6eddeb10c81dd4167d71fa92864ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 13:25:46 +0000 Subject: [PATCH 1/2] Skip ActivityTracking tests on Android (refs #129088) The BasicEventSourceTests.ActivityTracking tests consistently fail on Android because the Activity ID remains zero after EventSource Start/Stop operations. This disables the four affected tests on Android with a reference to the tracking KBE issue. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../tests/BasicEventSourceTest/ActivityTracking.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/ActivityTracking.cs b/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/ActivityTracking.cs index e7994467db6925..b5ac524851d742 100644 --- a/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/ActivityTracking.cs +++ b/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/ActivityTracking.cs @@ -53,6 +53,7 @@ public void IsSupported() [Fact] [ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)] public void StartStopCreatesActivity() { using ActivityEventListener l = new ActivityEventListener(); @@ -69,6 +70,7 @@ public void StartStopCreatesActivity() [Fact] [ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)] public async Task ActivityFlowsAsync() { using ActivityEventListener l = new ActivityEventListener(); @@ -118,6 +120,7 @@ private async Task YieldTwoActivitiesDeep(ActivityEventSource es) // Compare with SetCurrentActivityIdAfterEventDoesNotFlowAsync below. [Fact] [ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)] public async Task SetCurrentActivityIdBeforeEventFlowsAsync() { using ActivityEventListener l = new ActivityEventListener(); @@ -144,6 +147,7 @@ public async Task SetCurrentActivityIdBeforeEventFlowsAsync() // Compare with SetCurrentActivityIdBeforeEventFlowsAsync above. [Fact] [ActiveIssue("https://github.com/dotnet/runtime/issues/123011", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsCoreCLR))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/129088", TestPlatforms.Android)] public async Task SetCurrentActivityIdAfterEventDoesNotFlowAsync() { using ActivityEventListener l = new ActivityEventListener(); From c65c54af8797bda6b65676e55150efb6b06d7e5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 7 Jun 2026 13:25:50 +0000 Subject: [PATCH 2/2] ci: trigger checks