Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrennan Conroy <brecon@microsoft.com>2022-06-24 02:33:51 +0300
committerBrennan Conroy <brecon@microsoft.com>2022-06-24 02:33:51 +0300
commit6d6476b00a1890c81e5a5de2bfd2b91024d30fd4 (patch)
treea796157fcaca439ac6feb7703da9104b514692d0
parent6cec7613321ab3fdf2437f51a3aae792f94a64f6 (diff)
Quarantining failing HTTP3 testsbrecon/q11
-rw-r--r--src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs1
-rw-r--r--src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs b/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs
index 4bf16ac59c..0080b1d8d3 100644
--- a/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs
+++ b/src/Servers/Kestrel/Transport.Quic/test/QuicConnectionListenerTests.cs
@@ -102,6 +102,7 @@ public class QuicConnectionListenerTests : TestApplicationErrorLoggerLoggedTest
[ConditionalFact]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.Linux | OperatingSystems.MacOSX)]
+ [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/42389")]
public async Task ClientCertificate_Required_NotSent_AcceptedViaCallback()
{
await using var connectionListener = await QuicTestHelpers.CreateConnectionListenerFactory(LoggerFactory, clientCertificateRequired: true);
diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs b/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs
index 67430dc5b0..55a0d7fb7f 100644
--- a/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs
+++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3TlsTests.cs
@@ -214,6 +214,7 @@ public class Http3TlsTests : LoggedTest
[ConditionalFact]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
+ [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/42388")]
public async Task ClientCertificate_Allow_NotAvailable_Optional()
{
var builder = CreateHostBuilder(async context =>