Skip to content

Commit

Permalink
Disable SslStreamTlsResumeTests.(No)?ClientCert_DefaultValue_ResumeSu…
Browse files Browse the repository at this point in the history
…cceeds on ARM (#103359)
  • Loading branch information
rzikm committed Jun 13, 2024
1 parent 5b79b76 commit 4f9cd4d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -194,8 +195,9 @@ public static TheoryData<SslProtocols, bool, ClientCertSource> 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
Expand Down

0 comments on commit 4f9cd4d

Please sign in to comment.