enable two quic tests (#55880)
authorTomas Weinfurt <tweinfurt@yahoo.com>
Sun, 18 Jul 2021 10:12:40 +0000 (03:12 -0700)
committerGitHub <noreply@github.com>
Sun, 18 Jul 2021 10:12:40 +0000 (06:12 -0400)
src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicTests.cs
src/libraries/System.Net.Quic/tests/FunctionalTests/QuicStreamConnectedStreamConformanceTests.cs

index 884c18947568cb28ff23b634e8e301ccc1616a8d..83846baf6cd6e05474da00c7bc7ba667af22503b 100644 (file)
@@ -158,7 +158,6 @@ namespace System.Net.Quic.Tests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/52048")]
         public async Task WaitForAvailableUnidirectionStreamsAsyncWorks()
         {
             using QuicListener listener = CreateQuicListener(maxUnidirectionalStreams: 1);
index f100657cb46711a9b307e8a6c971a9b8c6278d73..4ca6e0e055659c165ede741a6e939954fa0938b7 100644 (file)
@@ -23,10 +23,6 @@ namespace System.Net.Quic.Tests
         protected override QuicImplementationProvider Provider => QuicImplementationProviders.MsQuic;
         protected override bool UsableAfterCanceledReads => false;
         protected override bool BlocksOnZeroByteReads => true;
-
-        // TODO: new additions, find out the actual reason for hanging
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/49157")]
-        public override Task ReadAsync_DuringReadAsync_ThrowsIfUnsupported() => base.ReadAsync_DuringReadAsync_ThrowsIfUnsupported();
     }
 
     public abstract class QuicStreamConformanceTests : ConnectedStreamConformanceTests