Skip to content

[release/7.0] Disable ConnectWithRevocation_ServerCertWithoutContext_NoStapledOcsp on NativeAoT #74606

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public async Task DefaultConnect_EndToEnd_Ok(string host)
[InlineData(true)]
[InlineData(false)]
[SkipOnPlatform(TestPlatforms.Android, "The invalid certificate is rejected by Android and the .NET validation code isn't reached")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74034", TestPlatforms.OSX)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/70981", TestPlatforms.OSX)]
public Task ConnectWithRevocation_WithCallback(bool checkRevocation)
{
X509RevocationMode mode = checkRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck;
Expand All @@ -122,6 +122,7 @@ public Task ConnectWithRevocation_StapledOcsp(bool offlineContext)
[Fact]
[PlatformSpecific(TestPlatforms.Linux)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/70981", typeof(PlatformDetection), nameof(PlatformDetection.IsDebian10))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/70981", typeof(PlatformDetection), nameof(PlatformDetection.IsNativeAot))]
public Task ConnectWithRevocation_ServerCertWithoutContext_NoStapledOcsp()
{
// Offline will only work if
Expand Down