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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnirudh Agnihotry <anirudhagnihotry098@gmail.com>2020-07-08 13:59:37 +0300
committerGitHub <noreply@github.com>2020-07-08 13:59:37 +0300
commit5ce04ccc9a44b5a28b4eb1959833015ee35bea0a (patch)
treea797a9d50b82d7b262205f5b1daf912fdacd5916 /src/libraries/System.Net.Security/tests/UnitTests
parent54a09d24142864767d50c83c2a64c0e1e37a34c2 (diff)
Make browser peer for windows_nt and unix (#37944)
Fixes https://github.com/dotnet/runtime/issues/38559
Diffstat (limited to 'src/libraries/System.Net.Security/tests/UnitTests')
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs2
-rw-r--r--src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs b/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs
index 6869c4ee311..dec1782352a 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs
+++ b/src/libraries/System.Net.Security/tests/UnitTests/SslAuthenticationOptionsTests.cs
@@ -89,6 +89,7 @@ namespace System.Net.Security.Tests
}
[Fact]
+ [ActiveIssue("https://github.com/dotnet/runtime/issues/38559")]
public void ClientCertificates_Get_Set_Succeeds()
{
Assert.Null(_clientOptions.ClientCertificates);
@@ -102,6 +103,7 @@ namespace System.Net.Security.Tests
}
[Fact]
+ [ActiveIssue("https://github.com/dotnet/runtime/issues/38559")]
public void ServerCertificate_Get_Set_Succeeds()
{
Assert.Null(_serverOptions.ServerCertificate);
diff --git a/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj b/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj
index 1afe1fcf582..2323a9323b5 100644
--- a/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj
+++ b/src/libraries/System.Net.Security/tests/UnitTests/System.Net.Security.Unit.Tests.csproj
@@ -10,7 +10,7 @@
<NoWarn>436</NoWarn>
<!-- Disable: CLSCompliant attribute is not needed -->
<NoWarn>$(NoWarn);3021</NoWarn>
- <TargetFrameworks>$(NetCoreAppCurrent)-Windows_NT;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-OSX;$(NetCoreAppCurrent)-iOS</TargetFrameworks>
+ <TargetFrameworks>$(NetCoreAppCurrent)-Windows_NT;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent)-Browser;$(NetCoreAppCurrent)-OSX;$(NetCoreAppCurrent)-iOS</TargetFrameworks>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>