From ff1eeff500e9a2eef7c593fc2517e9f8d0c40fc6 Mon Sep 17 00:00:00 2001 From: Aaron Robinson Date: Sat, 20 Jan 2024 22:04:28 -0800 Subject: [PATCH] Update TestsManifestGeneration.Etw.cs (#97258) * Update TestsManifestGeneration.Etw.cs Disable tests on x86 --- .../tests/BasicEventSourceTest/TestsManifestGeneration.Etw.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/TestsManifestGeneration.Etw.cs b/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/TestsManifestGeneration.Etw.cs index 4973ad18f74aa..bc1b3c7cba8c2 100644 --- a/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/TestsManifestGeneration.Etw.cs +++ b/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/TestsManifestGeneration.Etw.cs @@ -31,6 +31,7 @@ public partial class TestsManifestGeneration /// ETW only works with elevated process [ConditionalFact(nameof(IsProcessElevatedAndNotWindowsNanoServerAndRemoteExecutorSupported))] [SkipOnCoreClr("Test should only be run in non-stress modes", ~RuntimeTestModes.RegularRun)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/97255", typeof(PlatformDetection), nameof(PlatformDetection.IsX86Process))] public void Test_EventSource_EtwManifestGeneration() { var pid = Process.GetCurrentProcess().Id; @@ -71,6 +72,7 @@ public void Test_EventSource_EtwManifestGeneration() [ConditionalFact(nameof(IsProcessElevatedAndNotWindowsNanoServerAndRemoteExecutorSupported))] [SkipOnCoreClr("Test should only be run in non-stress modes", ~RuntimeTestModes.RegularRun)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/97255", typeof(PlatformDetection), nameof(PlatformDetection.IsX86Process))] public void Test_EventSource_EtwManifestGenerationRollover() { var pid = Process.GetCurrentProcess().Id;