Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
using System.Net.Test.Common;
using System.Threading;

using Microsoft.DotNet.XUnitExtensions;

using Xunit;
using Xunit.Abstractions;

Expand Down Expand Up @@ -579,8 +581,15 @@ public void SendPacketsElement_FileStreamMultiPartMixed_Success() {
}
}

[Fact]
[ConditionalFact]
public void SendPacketsElement_FileStreamMultiPartMixed_MultipleFileStreams_Success() {

if (PlatformDetection.IsWindows10Version22000OrGreater)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/58898")]
throw new SkipTestException("Unstable on Windows 11");
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm seeing repeated failures in multiple SendPacketsElement tests, not just this one, e.g.
image
Can we get them all disabled asap?
cc: @karelz


using (var stream = new FileStream(TestFileName, FileMode.Open, FileAccess.Read, FileShare.Read, 4096, FileOptions.Asynchronous))
using (var stream2 = new FileStream(TestFileName, FileMode.Open, FileAccess.Read, FileShare.Read, 4096, FileOptions.Asynchronous)) {
var elements = new[]
Expand Down