From 4fdd1ecada9a89bd62a12d0f6c4890df44b349d1 Mon Sep 17 00:00:00 2001 From: Radek Zikmund Date: Wed, 12 Jun 2024 20:01:34 +0200 Subject: [PATCH] Disable SslStreamTlsResumeTests.(No)?ClientCert_DefaultValue_ResumeSucceeds on ARM --- .../tests/FunctionalTests/SslStreamAllowTlsResumeTests.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamAllowTlsResumeTests.cs b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamAllowTlsResumeTests.cs index bc0df20697b38b..83777bcee18ac8 100644 --- a/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamAllowTlsResumeTests.cs +++ b/src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamAllowTlsResumeTests.cs @@ -133,8 +133,9 @@ await TestConfiguration.WhenAllOrAnyFailedWithTimeout( server.Dispose(); } - [Theory] + [ConditionalTheory] [MemberData(nameof(SslProtocolsData))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/103354", typeof(PlatformDetection), nameof(PlatformDetection.IsArmOrArm64Process))] public Task NoClientCert_DefaultValue_ResumeSucceeds(SslProtocols sslProtocol) { SslServerAuthenticationOptions serverOptions = new SslServerAuthenticationOptions @@ -194,8 +195,9 @@ public static TheoryData ClientCertTestDat return data; } - [Theory] + [ConditionalTheory] [MemberData(nameof(ClientCertTestData))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/103354", typeof(PlatformDetection), nameof(PlatformDetection.IsArmOrArm64Process))] public Task ClientCert_DefaultValue_ResumeSucceeds(SslProtocols sslProtocol, bool certificateRequired, ClientCertSource certSource) { SslServerAuthenticationOptions serverOptions = new SslServerAuthenticationOptions