From 26009099984a5e881738bed898dcf12f6f68a580 Mon Sep 17 00:00:00 2001 From: Karel Zikmund Date: Sat, 24 Sep 2022 22:58:25 +0200 Subject: [PATCH] Disable failing test SignedXmlTest.VerifyXmlResolver (#76129) PR #75369 tried to fix the problem and re-enabled the test, but it is still failing. Tracked by #74115 --- .../System.Security.Cryptography.Xml/tests/SignedXmlTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libraries/System.Security.Cryptography.Xml/tests/SignedXmlTest.cs b/src/libraries/System.Security.Cryptography.Xml/tests/SignedXmlTest.cs index 76b022e90fc..3db8c44aed8 100644 --- a/src/libraries/System.Security.Cryptography.Xml/tests/SignedXmlTest.cs +++ b/src/libraries/System.Security.Cryptography.Xml/tests/SignedXmlTest.cs @@ -1594,6 +1594,7 @@ public void VerifyHMAC_HMACOutputLength_Invalid() [Theory] [InlineData(false)] [InlineData(true)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/74115")] public void VerifyXmlResolver(bool provideResolver) { TcpListener listener = new TcpListener(IPAddress.Loopback, 0); -- GitLab