From f351acd9085950347bcd48c2c71bec63666965f6 Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Tue, 22 Jun 2021 10:06:28 -0700 Subject: [PATCH] Disable failing System.Reflection.Tests.ModuleTests.GetMethods Tracking: https://github.com/dotnet/runtime/issues/50831 --- .../System.Runtime/tests/System/Reflection/ModuleTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Runtime/tests/System/Reflection/ModuleTests.cs b/src/libraries/System.Runtime/tests/System/Reflection/ModuleTests.cs index a481ee253a55e..29fe532e6c0eb 100644 --- a/src/libraries/System.Runtime/tests/System/Reflection/ModuleTests.cs +++ b/src/libraries/System.Runtime/tests/System/Reflection/ModuleTests.cs @@ -232,6 +232,7 @@ public void GetMethod() [Fact] [ActiveIssue("https://github.com/dotnet/runtime/issues/51912", typeof(PlatformDetection), nameof(PlatformDetection.IsBuiltWithAggressiveTrimming), nameof(PlatformDetection.IsBrowser))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/50831")] public void GetMethods() { var methodNames = TestModule.GetMethods().Select(m => m.Name).ToArray();