From 2b269e0433aa443bce632d27790cac9abf7d1783 Mon Sep 17 00:00:00 2001 From: "Chris Ross (ASP.NET)" Date: Tue, 19 Jun 2018 13:58:34 -0700 Subject: [PATCH] Set Min OS version for ALPN tests at Win 8.1. --- test/Kestrel.FunctionalTests/Http2/TlsTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/Kestrel.FunctionalTests/Http2/TlsTests.cs b/test/Kestrel.FunctionalTests/Http2/TlsTests.cs index 081b9c8c1c..d65ec34f14 100644 --- a/test/Kestrel.FunctionalTests/Http2/TlsTests.cs +++ b/test/Kestrel.FunctionalTests/Http2/TlsTests.cs @@ -25,6 +25,8 @@ using Xunit; namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests.Http2 { [OSSkipCondition(OperatingSystems.MacOSX, SkipReason = "Missing SslStream ALPN support: https://github.com/dotnet/corefx/issues/30492")] + [MinimumOSVersion(OperatingSystems.Windows, WindowsVersions.Win81, + SkipReason = "Missing Windows ALPN support: https://en.wikipedia.org/wiki/Application-Layer_Protocol_Negotiation#Support")] public class TlsTests : LoggedTest { private static X509Certificate2 _x509Certificate2 = TestResources.GetTestCertificate();