File tree 5 files changed +12
-0
lines changed
InMemory.FunctionalTests/Http2
Interop.FunctionalTests/Http3
5 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 52
52
<ItemGroup Condition =" '$(TargetArchitecture)' == 'x64' AND '$(IsHelixDaily)' == 'true' AND '$(_UseHelixOpenQueues)' == 'true'" >
53
53
<HelixAvailableTargetQueue Include =" Windows.10.Amd64.Server20H2.Open" Platform =" Windows" />
54
54
<HelixAvailableTargetQueue Include =" Windows.11.Amd64.ClientPre.Open" Platform =" Windows" />
55
+ <HelixAvailableTargetQueue Include =" Windows.Amd64.Server2022.Open" Platform =" Windows" />
55
56
</ItemGroup >
56
57
57
58
<!-- x64 Queues for internal helix-matrix.yml and quarantine pipelines -->
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ public async Task AcceptAsync_ClientCreatesConnection_ServerAccepts()
60
60
[ ConditionalFact ]
61
61
[ MsQuicSupported ]
62
62
[ OSSkipCondition ( OperatingSystems . Linux | OperatingSystems . MacOSX ) ]
63
+ [ MaximumOSVersion ( OperatingSystems . Windows , WindowsVersions . Win10_20H2 ,
64
+ SkipReason = "Windows versions newer than 20H2 do not enable TLS 1.1: https://github.com/dotnet/aspnetcore/issues/37761" ) ]
63
65
public async Task ClientCertificate_Required_Sent_Populated ( )
64
66
{
65
67
// Arrange
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ public class TlsTests : LoggedTest
29
29
[ OSSkipCondition ( OperatingSystems . Linux , SkipReason = "TLS 1.1 ciphers are now disabled by default: https://github.com/dotnet/docs/issues/20842" ) ]
30
30
[ MinimumOSVersion ( OperatingSystems . Windows , WindowsVersions . Win10 ,
31
31
SkipReason = "Missing Windows ALPN support: https://en.wikipedia.org/wiki/Application-Layer_Protocol_Negotiation#Support or incompatible ciphers on Windows 8.1" ) ]
32
+ [ MaximumOSVersion ( OperatingSystems . Windows , WindowsVersions . Win10_20H2 ,
33
+ SkipReason = "Windows versions newer than 20H2 do not enable TLS 1.1: https://github.com/dotnet/aspnetcore/issues/37761" ) ]
32
34
public async Task TlsHandshakeRejectsTlsLessThan12 ( )
33
35
{
34
36
await using ( var server = new TestServer ( context =>
Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ public async Task ServerCertificateSelector_Invoked()
67
67
[ InlineData ( ClientCertificateMode . AllowCertificate ) ]
68
68
[ MsQuicSupported ]
69
69
[ OSSkipCondition ( OperatingSystems . MacOSX | OperatingSystems . Linux , SkipReason = "https://github.com/dotnet/aspnetcore/issues/35800" ) ]
70
+ [ MaximumOSVersion ( OperatingSystems . Windows , WindowsVersions . Win10_20H2 ,
71
+ SkipReason = "Windows versions newer than 20H2 do not enable TLS 1.1: https://github.com/dotnet/aspnetcore/issues/37761" ) ]
70
72
public async Task ClientCertificate_AllowOrRequire_Available_Accepted ( ClientCertificateMode mode )
71
73
{
72
74
var builder = CreateHostBuilder ( async context =>
Original file line number Diff line number Diff line change @@ -50,5 +50,10 @@ public static class WindowsVersions
50
50
/// 20H2, 19042
51
51
/// </summary>
52
52
public const string Win10_20H2 = "10.0.19042" ;
53
+
54
+ /// <summary>
55
+ /// 2022, 20348
56
+ /// </summary>
57
+ public const string Win_Server_2022 = "10.0.20348" ;
53
58
}
54
59
}
You can’t perform that action at this time.
0 commit comments