Skip to content
Merged
Show file tree
Hide file tree
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 @@ -13,7 +13,6 @@

namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicConnectionContextTests : TestApplicationErrorLoggerLoggedTest
{
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicConnectionListenerTests : TestApplicationErrorLoggerLoggedTest
{
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicStreamContextTests : TestApplicationErrorLoggerLoggedTest
{
private static readonly byte[] TestData = Encoding.UTF8.GetBytes("Hello world");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class QuicTransportFactoryTests : TestApplicationErrorLoggerLoggedTest
{
[ConditionalFact]
Expand Down
1 change: 0 additions & 1 deletion src/Servers/Kestrel/Transport.Quic/test/WebHostTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class WebHostTests : LoggedTest
{
[ConditionalFact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

namespace Interop.FunctionalTests.Http3
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class Http3RequestTests : LoggedTest
{
private class StreamingHttpContent : HttpContent
Expand Down Expand Up @@ -394,6 +393,7 @@ public async Task POST_ClientCancellationUpload_RequestAbortRaised(HttpProtocols
[MsQuicSupported]
[InlineData(HttpProtocols.Http3)]
[InlineData(HttpProtocols.Http2)]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task POST_ServerAbort_ClientReceivesAbort(HttpProtocols protocol)
{
// Arrange
Expand Down Expand Up @@ -1472,6 +1472,7 @@ public async Task GET_ConnectionInfo_PropertiesSet()
[MsQuicSupported]
[InlineData(HttpProtocols.Http3)]
[InlineData(HttpProtocols.Http2)]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task GET_GracefulServerShutdown_AbortRequestsAfterHostTimeout(HttpProtocols protocol)
{
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

namespace Interop.FunctionalTests.Http3
{
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public class Http3TlsTests : LoggedTest
{
[ConditionalFact]
Expand Down Expand Up @@ -156,6 +155,7 @@ public async Task ClientCertificate_NoOrDelayed_Available_Ignored(ClientCertific
[InlineData(ClientCertificateMode.AllowCertificate, true)]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task ClientCertificate_AllowOrRequire_Available_Invalid_Refused(ClientCertificateMode mode, bool serverAllowInvalid)
{
var builder = CreateHostBuilder(async context =>
Expand Down Expand Up @@ -212,6 +212,7 @@ public async Task ClientCertificate_AllowOrRequire_Available_Invalid_Refused(Cli
[ConditionalFact]
[MsQuicSupported]
[OSSkipCondition(OperatingSystems.MacOSX | OperatingSystems.Linux, SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800")]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35070")]
public async Task ClientCertificate_Allow_NotAvailable_Optional()
{
var builder = CreateHostBuilder(async context =>
Expand Down