Enable SendReceive_VaryingLengthBuffers_Success on Windows run (dotnet/corefx#27181)
authorCaesar Chen <caesar1995@users.noreply.github.com>
Sat, 17 Feb 2018 00:03:46 +0000 (16:03 -0800)
committerGitHub <noreply@github.com>
Sat, 17 Feb 2018 00:03:46 +0000 (16:03 -0800)
* enable test on Windows run

* delete script

* disable test issue dotnet/corefx#27211

* disable test see dotnet/corefx#27217

Commit migrated from https://github.com/dotnet/corefx/commit/d3a69ff4448a0bd4df12e6af481898825c066c67

src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.cs
src/libraries/System.Net.WebSockets.Client/tests/CancelTest.cs
src/libraries/System.Net.WebSockets.Client/tests/SendReceiveTest.cs

index d203918..96d4413 100644 (file)
@@ -866,6 +866,7 @@ namespace System.Net.Http.Functional.Tests
         [InlineData("", "#redirFragment", "#redirFragment", true)]
         [InlineData("#origFragment", "#redirFragment", "#redirFragment", false)]
         [InlineData("#origFragment", "#redirFragment", "#redirFragment", true)]
+        [ActiveIssue(27217)]
         public async Task GetAsync_AllowAutoRedirectTrue_RetainsOriginalFragmentIfAppropriate(
             string origFragment, string redirFragment, string expectedFragment, bool useRelativeRedirect)
         {
index 9bc3015..39bebb2 100644 (file)
@@ -75,6 +75,7 @@ namespace System.Net.WebSockets.Client.Tests
 
         [OuterLoop] // TODO: Issue #11345
         [ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))]
+        [ActiveIssue(27211)]
         public async Task CloseAsync_Cancel_Success(Uri server)
         {
             await TestCancellation(async (cws) =>
index 093a1f9..ff1e18e 100644 (file)
@@ -305,7 +305,7 @@ namespace System.Net.WebSockets.Client.Tests
             }
         }
 
-        [ActiveIssue(23765)]
+        [ActiveIssue(23765, TestPlatforms.AnyUnix)]
         [OuterLoop] // TODO: Issue #11345
         [ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))]
         public async Task SendReceive_VaryingLengthBuffers_Success(Uri server)