Skip to content

Commit 4f9cd4d

Browse files
authored
Disable SslStreamTlsResumeTests.(No)?ClientCert_DefaultValue_ResumeSucceeds on ARM (#103359)
1 parent 5b79b76 commit 4f9cd4d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libraries/System.Net.Security/tests/FunctionalTests/SslStreamAllowTlsResumeTests.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,9 @@ await TestConfiguration.WhenAllOrAnyFailedWithTimeout(
133133
server.Dispose();
134134
}
135135

136-
[Theory]
136+
[ConditionalTheory]
137137
[MemberData(nameof(SslProtocolsData))]
138+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103354", typeof(PlatformDetection), nameof(PlatformDetection.IsArmOrArm64Process))]
138139
public Task NoClientCert_DefaultValue_ResumeSucceeds(SslProtocols sslProtocol)
139140
{
140141
SslServerAuthenticationOptions serverOptions = new SslServerAuthenticationOptions
@@ -194,8 +195,9 @@ public static TheoryData<SslProtocols, bool, ClientCertSource> ClientCertTestDat
194195
return data;
195196
}
196197

197-
[Theory]
198+
[ConditionalTheory]
198199
[MemberData(nameof(ClientCertTestData))]
200+
[ActiveIssue("https://github.com/dotnet/runtime/issues/103354", typeof(PlatformDetection), nameof(PlatformDetection.IsArmOrArm64Process))]
199201
public Task ClientCert_DefaultValue_ResumeSucceeds(SslProtocols sslProtocol, bool certificateRequired, ClientCertSource certSource)
200202
{
201203
SslServerAuthenticationOptions serverOptions = new SslServerAuthenticationOptions

0 commit comments

Comments
 (0)