From e0dbc21cccb5d007e74cb80284800e48f8cc1747 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 5 Mar 2019 08:23:58 -0800 Subject: [PATCH] skip flaky Kestrel ValidationFailureRejectsConnection test on Helix (#8170) See #8168 for details on the failure and discussions on priority of unskipping. --- .../InMemory.FunctionalTests/HttpsConnectionAdapterTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/HttpsConnectionAdapterTests.cs b/src/Servers/Kestrel/test/InMemory.FunctionalTests/HttpsConnectionAdapterTests.cs index bda5a2efb9..747c9c3626 100644 --- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/HttpsConnectionAdapterTests.cs +++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/HttpsConnectionAdapterTests.cs @@ -20,6 +20,7 @@ using Microsoft.AspNetCore.Server.Kestrel.Https; using Microsoft.AspNetCore.Server.Kestrel.Https.Internal; using Microsoft.AspNetCore.Server.Kestrel.InMemory.FunctionalTests.TestTransport; using Microsoft.AspNetCore.Testing; +using Microsoft.AspNetCore.Testing.xunit; using Microsoft.Extensions.Logging.Testing; using Xunit; @@ -497,6 +498,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.InMemory.FunctionalTests } [Theory] + [SkipOnHelix] [InlineData(ClientCertificateMode.AllowCertificate)] [InlineData(ClientCertificateMode.RequireCertificate)] public async Task ValidationFailureRejectsConnection(ClientCertificateMode mode)