Mark Flaky http.sys tests Internal/#1826 (#8890)
This commit is contained in:
parent
658b37d2bd
commit
e881ee58c0
|
|
@ -9,6 +9,7 @@ using System.Net.Sockets;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Microsoft.AspNetCore.Testing.xunit;
|
using Microsoft.AspNetCore.Testing.xunit;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
|
|
@ -17,6 +18,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.Listener
|
||||||
public class RequestBodyTests
|
public class RequestBodyTests
|
||||||
{
|
{
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
|
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/1826", FlakyOn.All)]
|
||||||
public async Task RequestBody_SyncReadDisabledByDefault_WorksWhenEnabled()
|
public async Task RequestBody_SyncReadDisabledByDefault_WorksWhenEnabled()
|
||||||
{
|
{
|
||||||
string address;
|
string address;
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ using System.Net.Http;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Microsoft.AspNetCore.Testing.xunit;
|
using Microsoft.AspNetCore.Testing.xunit;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
|
|
@ -85,6 +86,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.FunctionalTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
|
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/1826", FlakyOn.All)]
|
||||||
public async Task Caching_WithoutContentType_Cached_OnWin7AndWin2008R2()
|
public async Task Caching_WithoutContentType_Cached_OnWin7AndWin2008R2()
|
||||||
{
|
{
|
||||||
if (Utilities.IsWin8orLater)
|
if (Utilities.IsWin8orLater)
|
||||||
|
|
@ -235,6 +237,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.FunctionalTests
|
||||||
[ConditionalTheory]
|
[ConditionalTheory]
|
||||||
[InlineData("0")]
|
[InlineData("0")]
|
||||||
[InlineData("-1")]
|
[InlineData("-1")]
|
||||||
|
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/1826", FlakyOn.All)]
|
||||||
public async Task Caching_InvalidExpires_NotCached(string expiresValue)
|
public async Task Caching_InvalidExpires_NotCached(string expiresValue)
|
||||||
{
|
{
|
||||||
var requestCount = 1;
|
var requestCount = 1;
|
||||||
|
|
@ -375,7 +378,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys.FunctionalTests
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalFact]
|
[ConditionalFact]
|
||||||
[SkipOnHelix] // https://github.com/aspnet/AspNetCore/issues/8091
|
[Flaky("https://github.com/aspnet/AspNetCore-Internal/issues/1826", FlakyOn.All)]
|
||||||
public async Task Caching_VariousStatusCodes_Cached()
|
public async Task Caching_VariousStatusCodes_Cached()
|
||||||
{
|
{
|
||||||
var requestCount = 1;
|
var requestCount = 1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue