From 83f6044a524238462e53eba0328c0b92aae8dadb Mon Sep 17 00:00:00 2001 From: William Godbe Date: Mon, 25 Sep 2023 09:01:38 -0700 Subject: [PATCH] Skip failing tests --- src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs b/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs index 5c094ca6a543..1d484f893b74 100644 --- a/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs +++ b/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs @@ -545,6 +545,7 @@ await h2Connection.ReceiveHeadersAsync(1, decodedHeaders => [ConditionalFact] [MinimumOSVersion(OperatingSystems.Windows, WindowsVersions.Win10, SkipReason = "Http2 requires Win10")] [MaximumOSVersion(OperatingSystems.Windows, WindowsVersions.Win10_20H1, SkipReason = "This is last version without custom Reset support")] + [SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/50916", Queues = "Windows.Amd64.VS2022.Pre")] public async Task AppException_AfterHeaders_PriorOSVersions_ResetCancel() { using var server = Utilities.CreateDynamicHttpsServer(out var address, async httpContext => @@ -629,6 +630,7 @@ public async Task Reset_Http1_NotSupported() [ConditionalFact] [MinimumOSVersion(OperatingSystems.Windows, WindowsVersions.Win10, SkipReason = "Http2 requires Win10")] [MaximumOSVersion(OperatingSystems.Windows, WindowsVersions.Win10_20H2, SkipReason = "This is last version without Reset support")] + [SkipOnHelix("https://github.com/dotnet/aspnetcore/issues/50916", Queues = "Windows.Amd64.VS2022.Pre")] public async Task Reset_PriorOSVersions_NotSupported() { using var server = Utilities.CreateDynamicHttpsServer(out var address, httpContext =>