quarantine dsome tests (#18671)

This commit is contained in:
Andrew Stanton-Nurse 2020-01-29 21:01:03 -08:00 committed by GitHub
parent 6e28a28c9a
commit c08221ffbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
{
public class ConnectionMiddlewareTests : LoggedTest
{
[Flaky("<No longer needed; tracked in Kusto>", FlakyOn.All)]
[Fact]
public async Task ThrowingSynchronousConnectionMiddlewareDoesNotCrashServer()
{

View File

@ -814,6 +814,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
[Fact]
[CollectDump]
[Flaky("<No longer needed; tracked in Kusto>", FlakyOn.All)]
public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders()
{
var headerSize = 1024 * 1024; // 1 MB for each header value

View File

@ -30,6 +30,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
#endif
[ConditionalFact]
[CollectDump]
[Flaky("<No longer needed; tracked in Kusto>", FlakyOn.All)]
public async Task TestUnixDomainSocket()
{
var path = Path.GetTempFileName();

View File

@ -65,6 +65,7 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
[Theory]
[MemberData(nameof(TransportTypes))]
[Flaky("<No longer needed; tracked in Kusto>", FlakyOn.All)]
public async Task ClientUsingOldCallWithNewProtocol(HttpTransportType transportType)
{
using (StartServer<VersionStartup>(out var server))

View File

@ -1125,6 +1125,7 @@ namespace Microsoft.AspNetCore.Http.Connections.Tests
}
[Fact]
[Flaky("<No longer needed; tracked in Kusto>", FlakyOn.All)]
public async Task RequestToActiveConnectionIdKillsPreviousConnectionLongPolling()
{
using (StartVerifiableLog())

View File

@ -5,6 +5,7 @@ using System;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Testing;
using Microsoft.DotNet.OpenApi.Tests;
using Xunit;
using Xunit.Abstractions;
@ -459,6 +460,7 @@ namespace Microsoft.DotNet.OpenApi.Add.Tests
Assert.False(File.Exists(jsonFile));
}
[Flaky("<No longer needed, tracked in Kusto>", FlakyOn.All)]
[Fact]
public void OpenApi_Add_URL_ActualResponse()
{

View File

@ -5,6 +5,7 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Microsoft.AspNetCore.Testing;
using Microsoft.Extensions.Configuration.UserSecrets;
using Microsoft.Extensions.Configuration.UserSecrets.Tests;
using Microsoft.Extensions.Tools.Internal;
@ -265,6 +266,7 @@ namespace Microsoft.Extensions.SecretManager.Tools.Tests
Assert.Contains(Resources.Error_No_Secrets_Found, _output.ToString());
}
[Flaky("<No longer needed, tracked in Kusto>", FlakyOn.All)]
[Theory]
[InlineData(true)]
[InlineData(false)]