From 6112ede06c94429bdaf7b1c1bc82c9f8154d9140 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 2 Apr 2021 21:36:33 -0700 Subject: [PATCH] Flaky tests --- src/Servers/Kestrel/Core/test/AsciiDecoding.cs | 2 ++ .../test/InMemory.FunctionalTests/Http3/Http3StreamTests.cs | 1 + 2 files changed, 3 insertions(+) diff --git a/src/Servers/Kestrel/Core/test/AsciiDecoding.cs b/src/Servers/Kestrel/Core/test/AsciiDecoding.cs index 32faf184c5e1..bd39c9c93620 100644 --- a/src/Servers/Kestrel/Core/test/AsciiDecoding.cs +++ b/src/Servers/Kestrel/Core/test/AsciiDecoding.cs @@ -5,6 +5,7 @@ using System.Linq; using System.Numerics; using Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Infrastructure; +using Microsoft.AspNetCore.Testing; using Xunit; namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests @@ -110,6 +111,7 @@ private void DifferentLengthsAreNotEqual() } [Fact] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31500")] private void AsciiBytesEqualAsciiStrings() { var byteRange = Enumerable.Range(1, 127).Select(x => (byte)x); diff --git a/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http3/Http3StreamTests.cs b/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http3/Http3StreamTests.cs index 9884b40cf504..cc72ccb0e96c 100644 --- a/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http3/Http3StreamTests.cs +++ b/src/Servers/Kestrel/test/InMemory.FunctionalTests/Http3/Http3StreamTests.cs @@ -1623,6 +1623,7 @@ await requestStream.WaitForStreamErrorAsync( } [Fact] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31501")] public async Task DataBeforeHeaders_UnexpectedFrameError() { var requestStream = await InitializeConnectionAndStreamsAsync(_noopApplication);