Reenable concurrent read/write test (#25017)
This commit is contained in:
parent
38563dd8d1
commit
187eacd570
|
|
@ -22,12 +22,11 @@ namespace Microsoft.AspNetCore.Server.IIS.FunctionalTests.InProcess
|
|||
}
|
||||
|
||||
[ConditionalFact]
|
||||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/7341")]
|
||||
public async Task ReadAndWriteSynchronously()
|
||||
{
|
||||
for (int i = 0; i < 100; i++)
|
||||
var content = new StringContent(new string('a', 100000));
|
||||
for (int i = 0; i < 500; i++)
|
||||
{
|
||||
var content = new StringContent(new string('a', 100000));
|
||||
var response = await _fixture.Client.PostAsync("ReadAndWriteSynchronously", content);
|
||||
var responseText = await response.Content.ReadAsStringAsync();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue