Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Hays <ianha@microsoft.com>2017-03-14 22:05:19 +0300
committerIan Hays <ianha@microsoft.com>2017-03-14 22:05:19 +0300
commitb98081dd5a335b4c63ac39a25013b4bbccd07b23 (patch)
treefd10990166f7d97abfd77ce93e1e6dba22583127 /src/System.Net.Security
parent1837ae1989be5c92cfc1aaf6f2884fa5ee579aec (diff)
Disable more recently failing Net.Security tests.
Diffstat (limited to 'src/System.Net.Security')
-rw-r--r--src/System.Net.Security/tests/FunctionalTests/ClientAsyncAuthenticateTest.cs1
-rw-r--r--src/System.Net.Security/tests/FunctionalTests/ServerAsyncAuthenticateTest.cs2
-rw-r--r--src/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs1
3 files changed, 4 insertions, 0 deletions
diff --git a/src/System.Net.Security/tests/FunctionalTests/ClientAsyncAuthenticateTest.cs b/src/System.Net.Security/tests/FunctionalTests/ClientAsyncAuthenticateTest.cs
index d898512b59..e89925d910 100644
--- a/src/System.Net.Security/tests/FunctionalTests/ClientAsyncAuthenticateTest.cs
+++ b/src/System.Net.Security/tests/FunctionalTests/ClientAsyncAuthenticateTest.cs
@@ -89,6 +89,7 @@ namespace System.Net.Security.Tests
[Theory]
[ClassData(typeof(SslProtocolSupport.SupportedSslProtocolsTestData))]
+ [ActiveIssue(16534, TestPlatforms.Windows)]
public async Task ClientAsyncAuthenticate_AllServerVsIndividualClientSupportedProtocols_Success(
SslProtocols clientProtocol)
{
diff --git a/src/System.Net.Security/tests/FunctionalTests/ServerAsyncAuthenticateTest.cs b/src/System.Net.Security/tests/FunctionalTests/ServerAsyncAuthenticateTest.cs
index 1c4456d2e9..70f17ce309 100644
--- a/src/System.Net.Security/tests/FunctionalTests/ServerAsyncAuthenticateTest.cs
+++ b/src/System.Net.Security/tests/FunctionalTests/ServerAsyncAuthenticateTest.cs
@@ -45,6 +45,7 @@ namespace System.Net.Security.Tests
[Theory]
[ClassData(typeof(SslProtocolSupport.UnsupportedSslProtocolsTestData))]
+ [ActiveIssue(16516, TestPlatforms.Windows)]
public async Task ServerAsyncAuthenticate_EachServerUnsupportedProtocol_Fail(SslProtocols protocol)
{
await Assert.ThrowsAsync<NotSupportedException>(() =>
@@ -76,6 +77,7 @@ namespace System.Net.Security.Tests
}
[Fact]
+ [ActiveIssue(16516, TestPlatforms.Windows)]
public async Task ServerAsyncAuthenticate_UnsupportedAllServer_Fail()
{
await Assert.ThrowsAsync<NotSupportedException>(() =>
diff --git a/src/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs b/src/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs
index 0f25755015..0df725b8d1 100644
--- a/src/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs
+++ b/src/System.Net.Security/tests/FunctionalTests/SslStreamStreamToStreamTest.cs
@@ -23,6 +23,7 @@ namespace System.Net.Security.Tests
protected abstract bool DoHandshake(SslStream clientSslStream, SslStream serverSslStream);
[Fact]
+ [ActiveIssue(16516, TestPlatforms.Windows)]
public void SslStream_StreamToStream_Authentication_Success()
{
VirtualNetwork network = new VirtualNetwork();