Make some skipped tests flaky (#8795)
This commit is contained in:
parent
e979426809
commit
7248ecbaf1
|
|
@ -28,6 +28,7 @@ namespace Microsoft.AspNetCore.Hosting.FunctionalTests
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
[OSSkipCondition(OperatingSystems.Windows)]
|
[OSSkipCondition(OperatingSystems.Windows)]
|
||||||
[OSSkipCondition(OperatingSystems.MacOSX)]
|
[OSSkipCondition(OperatingSystems.MacOSX)]
|
||||||
|
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/1687", FlakyOn.AzP.Linux)]
|
||||||
public async Task ShutdownTestRun()
|
public async Task ShutdownTestRun()
|
||||||
{
|
{
|
||||||
await ExecuteShutdownTest(nameof(ShutdownTestRun), "Run");
|
await ExecuteShutdownTest(nameof(ShutdownTestRun), "Run");
|
||||||
|
|
@ -116,7 +117,6 @@ namespace Microsoft.AspNetCore.Hosting.FunctionalTests
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private static void SendSIGINT(int processId)
|
private static void SendSIGINT(int processId)
|
||||||
{
|
{
|
||||||
var startInfo = new ProcessStartInfo
|
var startInfo = new ProcessStartInfo
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.InMemory.FunctionalTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
[OSSkipCondition(OperatingSystems.MacOSX, SkipReason = "https://github.com/aspnet/KestrelHttpServer/issues/2282")]
|
[Flaky("https://github.com/aspnet/KestrelHttpServer/issues/2282", FlakyOn.AzP.macOS)]
|
||||||
public async Task ConnectionCountingReturnsToZero()
|
public async Task ConnectionCountingReturnsToZero()
|
||||||
{
|
{
|
||||||
const int count = 100;
|
const int count = 100;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue