From 18c746aa09c5f50f615636500809fc32c1216efd Mon Sep 17 00:00:00 2001 From: Radek Zikmund <32671551+rzikm@users.noreply.github.com> Date: Wed, 29 Nov 2023 00:35:02 -0800 Subject: [PATCH] Disable System.Net.Quic.Tests.MsQuicTests.ByteMixingOrNativeAVE_MinimalFailingTest on WinSrv2022 (#95339) * Disable System.Net.Quic.Tests.MsQuicTests.ByteMixingOrNativeAVE_MinimalFailingTest on WinSrv2022 * Update MsQuicTests.cs --- .../System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs b/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs index 503c2d4068355..2a35e12547f28 100644 --- a/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs +++ b/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs @@ -728,7 +728,7 @@ public async Task OpenStreamAsync_BlocksUntilAvailable_PeerClosesWritingUnidirec // Open one stream, second call should block await using var stream = await clientConnection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional); - await stream.WriteAsync(new byte[64*1024], completeWrites: true); + await stream.WriteAsync(new byte[64 * 1024], completeWrites: true); await Assert.ThrowsAsync(() => clientConnection.OpenOutboundStreamAsync(QuicStreamType.Unidirectional).AsTask().WaitAsync(TimeSpan.FromSeconds(1))); await clientConnection.DisposeAsync(); @@ -1056,6 +1056,7 @@ public BufferSegment Append(ReadOnlyMemory memory) [Fact] [OuterLoop("May take several seconds")] + [ActiveIssue("https://github.com/dotnet/runtime/issues/85331", typeof(PlatformDetection), nameof(PlatformDetection.IsWindows10Version20348OrLower))] public async Task ByteMixingOrNativeAVE_MinimalFailingTest() { const int writeSize = 64 * 1024;