Skip to content

Commit

Permalink
Flaky tests (#31502)
Browse files Browse the repository at this point in the history
  • Loading branch information
John Luo committed Apr 5, 2021
1 parent 3c79366 commit c4d06ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Servers/Kestrel/Core/test/AsciiDecoding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit c4d06ec

Please sign in to comment.