From 862a90f46492203a20311ce8a2008b74e9a30f85 Mon Sep 17 00:00:00 2001 From: Krzysztof Wicher Date: Mon, 18 Oct 2021 17:04:25 +0200 Subject: [PATCH] Disable PerformanceCounter_NextValue_ProcessorCounter on Windows ARM64 (#60553) --- .../tests/PerformanceCounterTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Diagnostics.PerformanceCounter/tests/PerformanceCounterTests.cs b/src/libraries/System.Diagnostics.PerformanceCounter/tests/PerformanceCounterTests.cs index f54bde425313f..1c90fa6d36bbb 100644 --- a/src/libraries/System.Diagnostics.PerformanceCounter/tests/PerformanceCounterTests.cs +++ b/src/libraries/System.Diagnostics.PerformanceCounter/tests/PerformanceCounterTests.cs @@ -151,6 +151,7 @@ public static void PerformanceCounter_GetRawValue_CounterDoesNotExist() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/60403", typeof(PlatformDetection), nameof(PlatformDetection.IsArm64Process), nameof(PlatformDetection.IsWindows))] public static void PerformanceCounter_NextValue_ProcessorCounter() { using (PerformanceCounter counterSample = new PerformanceCounter("Processor", "Interrupts/sec", "_Total", "."))