Skip to content

Commit

Permalink
Updating tests with ActiveIssue 1123.
Browse files Browse the repository at this point in the history
* Some new tests added recently fail for known Issue 1123 on Linux platforms.
* The correct fix is to create a conditional fact that skips the test based on an invalid environment setup.
* The setup that is causing the failure is currently still under investigation.
  • Loading branch information
StephenBonikowsky committed May 19, 2016
1 parent fdd836e commit 4ad08f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public static class Binding_Http_NetHttpsBindingTests
{
[Fact]
[OuterLoop]
[ActiveIssue(1123, PlatformID.AnyUnix)]
public static void DefaultCtor_NetHttps_Echo_RoundTrips_String()
{
string testString = "Hello";
Expand Down Expand Up @@ -78,6 +79,7 @@ public static void TransportWithMessageCredential_NotSupported_NetHttps()

[Fact]
[OuterLoop]
[ActiveIssue(1123, PlatformID.AnyUnix)]
public static void NonDefaultCtor_NetHttps_Echo_RoundTrips_String()
{
string testString = "Hello";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ public static void IDuplexSessionChannel_Async_Tcp_NetTcpBinding()

[Fact]
[OuterLoop]
[ActiveIssue(1123, PlatformID.AnyUnix)]
public static void IRequestChannel_Https_NetHttpsBinding()
{
IChannelFactory<IRequestChannel> factory = null;
Expand Down

0 comments on commit 4ad08f8

Please sign in to comment.