Skip to content

Commit cd10c36

Browse files
committed
Quarantine not conntected failing tests.
1 parent f96d4ad commit cd10c36

File tree

9 files changed

+10
-1
lines changed

9 files changed

+10
-1
lines changed

src/Servers/Kestrel/Core/test/ConcurrentPipeWriterTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public async Task PassthroughIfAllFlushesAreAwaited()
7878
}
7979

8080
[Fact]
81+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60989")]
8182
public async Task QueuesIfFlushIsNotAwaited()
8283
{
8384
using (var memoryPool = new PinnedBlockMemoryPool())

src/Servers/Kestrel/Core/test/HeartbeatTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ static void AssertApproxEqual(double intervalMs, double actualMs)
9999
}
100100

101101
[Fact]
102+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60989")]
102103
public async Task HeartbeatTakingLongerThanIntervalIsLoggedAsWarning()
103104
{
104105
var timeProvider = new FakeTimeProvider();

src/Servers/Kestrel/Core/test/HttpConnectionTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Core.Tests;
1717
public class HttpConnectionTests
1818
{
1919
[Fact]
20+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60989")]
2021
public async Task WriteDataRateTimeoutAbortsConnection()
2122
{
2223
var mockConnectionContext = new Mock<ConnectionContext>();

src/Servers/Kestrel/Core/test/MessageBodyTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ public async Task CanReadAsyncFromChunkedEncoding()
329329
}
330330

331331
[Fact]
332+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60989")]
332333
public async Task ReadExitsGivenIncompleteChunkedExtension()
333334
{
334335
using (var input = new TestInput())

src/Servers/Kestrel/Transport.NamedPipes/test/NamedPipeConnectionListenerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ public async Task AcceptAsync_UnbindAfterCall_CleanExit()
140140
[InlineData(1)]
141141
[InlineData(4)]
142142
[InlineData(16)]
143+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60991")]
143144
public async Task AcceptAsync_ParallelConnections_ClientConnectionsSuccessfullyAccepted(int listenerQueueCount)
144145
{
145146
// Arrange

src/Servers/Kestrel/Transport.NamedPipes/test/WebHostTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public ValueTask UnbindAsync(CancellationToken cancellationToken = default)
135135

136136
[ConditionalFact]
137137
[NamedPipesSupported]
138+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60991")]
138139
public async Task ListenNamedPipeEndpoint_HelloWorld_ClientSuccess()
139140
{
140141
// Arrange
@@ -363,7 +364,7 @@ public async Task ListenNamedPipeEndpoint_Security_PerEndpointSecuritySettings()
363364
var responseText = await response.Content.ReadAsStringAsync().DefaultTimeout();
364365
Assert.Equal("hello, world", responseText);
365366

366-
var pipeAccessRights = (PipeAccessRights)Convert.ToInt32(string.Join(",", response.Headers.GetValues("X-PipeAccessRights")), CultureInfo.InvariantCulture);
367+
var pipeAccessRights = (PipeAccessRights)Convert.ToInt32(string.Join(",", response.Headers.GetValues("X-PipeAccessRights")), CultureInfo.InvariantCulture);
367368

368369
Assert.Equal(PipeAccessRights.ReadWrite, pipeAccessRights & PipeAccessRights.ReadWrite);
369370
Assert.Equal(PipeAccessRights.CreateNewInstance, pipeAccessRights & PipeAccessRights.CreateNewInstance);

src/Servers/Kestrel/test/FunctionalTests/Http2/HandshakeTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public void TlsAndHttp2NotSupportedOnWin7()
6464
[ConditionalFact]
6565
[TlsAlpnSupported]
6666
[MinimumOSVersion(OperatingSystems.Windows, WindowsVersions.Win10)]
67+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60990")]
6768
public async Task TlsAlpnHandshakeSelectsHttp2From1and2()
6869
{
6970
await using (var server = new TestServer(context =>

src/Servers/Kestrel/test/FunctionalTests/Http2/ShutdownTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ public async Task GracefulShutdownWaitsForRequestsToFinish()
161161
}
162162

163163
[ConditionalFact]
164+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60990")]
164165
public async Task GracefulTurnsAbortiveIfRequestsDoNotFinish()
165166
{
166167
var requestStarted = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously);

src/SignalR/server/SignalR/test/Microsoft.AspNetCore.SignalR.Tests/EndToEndTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ public async Task HttpConnectionThrowsIfSkipNegotiationSetAndTransportIsNotWebSo
255255
[Theory]
256256
[MemberData(nameof(TransportTypesAndTransferFormats))]
257257
[LogLevel(LogLevel.Trace)]
258+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/60992")]
258259
public async Task ConnectionCanSendAndReceiveMessages(HttpTransportType transportType, TransferFormat requestedTransferFormat)
259260
{
260261
await using (var server = await StartServer<Startup>())

0 commit comments

Comments
 (0)