Skip to content

Commit

Permalink
enable ZeroByteRead_BlocksUntilDataAvailableOrNops test for quic (#54431
Browse files Browse the repository at this point in the history
)
  • Loading branch information
wfurt authored Jun 19, 2021
1 parent 3174651 commit ca3c11d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public sealed class MsQuicQuicStreamConformanceTests : QuicStreamConformanceTest
{
protected override QuicImplementationProvider Provider => QuicImplementationProviders.MsQuic;
protected override bool UsableAfterCanceledReads => false;
protected override bool BlocksOnZeroByteReads => true;

// TODO: These are all hanging, likely due to Stream close behavior.
[ActiveIssue("https://github.com/dotnet/runtime/issues/756")]
Expand All @@ -43,8 +44,6 @@ public sealed class MsQuicQuicStreamConformanceTests : QuicStreamConformanceTest
[ActiveIssue("https://github.com/dotnet/runtime/issues/49157")]
public override Task Read_DataStoredAtDesiredOffset(ReadWriteMode mode) => base.Read_DataStoredAtDesiredOffset(mode);
[ActiveIssue("https://github.com/dotnet/runtime/issues/49157")]
public override Task ZeroByteRead_BlocksUntilDataAvailableOrNops(ReadWriteMode mode) => base.ZeroByteRead_BlocksUntilDataAvailableOrNops(mode);
[ActiveIssue("https://github.com/dotnet/runtime/issues/49157")]
public override Task ReadAsync_DuringReadAsync_ThrowsIfUnsupported() => base.ReadAsync_DuringReadAsync_ThrowsIfUnsupported();
}

Expand Down

0 comments on commit ca3c11d

Please sign in to comment.