Skip to content

Commit 8755447

Browse files
authored
Disable ConnectWithRevocation_ServerCertWithoutContext_NoStapledOcsp on NativeAoT (#74561)
* Disable ConnectWithRevocation_ServerCertWithoutContext_NoStapledOcsp on NativeAoT * Disable tests against #70981 instead
1 parent 8d4364c commit 8755447

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public async Task DefaultConnect_EndToEnd_Ok(string host)
9696
[InlineData(true)]
9797
[InlineData(false)]
9898
[SkipOnPlatform(TestPlatforms.Android, "The invalid certificate is rejected by Android and the .NET validation code isn't reached")]
99-
[ActiveIssue("https://github.com/dotnet/runtime/issues/74034", TestPlatforms.OSX)]
99+
[ActiveIssue("https://github.com/dotnet/runtime/issues/70981", TestPlatforms.OSX)]
100100
public Task ConnectWithRevocation_WithCallback(bool checkRevocation)
101101
{
102102
X509RevocationMode mode = checkRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck;
@@ -122,6 +122,7 @@ public Task ConnectWithRevocation_StapledOcsp(bool offlineContext)
122122
[Fact]
123123
[PlatformSpecific(TestPlatforms.Linux)]
124124
[ActiveIssue("https://github.com/dotnet/runtime/issues/70981", typeof(PlatformDetection), nameof(PlatformDetection.IsDebian10))]
125+
[ActiveIssue("https://github.com/dotnet/runtime/issues/70981", typeof(PlatformDetection), nameof(PlatformDetection.IsNativeAot))]
125126
public Task ConnectWithRevocation_ServerCertWithoutContext_NoStapledOcsp()
126127
{
127128
// Offline will only work if

0 commit comments

Comments
 (0)