Disable AuthProxy__ValidCreds_ProxySendsRequestToServer test on Nano (dotnet/corefx...
authorDavid Shulman <david.shulman@microsoft.com>
Sun, 10 Feb 2019 22:32:31 +0000 (14:32 -0800)
committerGitHub <noreply@github.com>
Sun, 10 Feb 2019 22:32:31 +0000 (14:32 -0800)
The System.Net.Http AuthProxy__ValidCreds_ProxySendsRequestToServer test is
frequently failing on Nano.  It is highly likely a test bug and not a product bug.

Contributes to dotnet/corefx#32809

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

src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Proxy.cs

index ba321dd..f525de4 100644 (file)
@@ -25,7 +25,7 @@ namespace System.Net.Http.Functional.Tests
         }
         
         [OuterLoop("Uses external server")]
-        [Theory]
+        [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] // Issue #32809
         [InlineData(AuthenticationSchemes.Ntlm, true, false)]
         [InlineData(AuthenticationSchemes.Negotiate, true, false)]
         [InlineData(AuthenticationSchemes.Basic, false, false)]