Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 19d2cb1

Browse files
committed
Disable RSA tests which are failing on Linux (Issue 1984)
1 parent ce3d530 commit 19d2cb1

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/System.Security.Cryptography.RSA/tests/ImportExport.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ public static void MultiExport()
155155
}
156156

157157
[Fact]
158+
[ActiveIssue(1984, PlatformID.AnyUnix)]
158159
public static void PublicOnlyPrivateExport()
159160
{
160161
RSAParameters imported = new RSAParameters

src/System.Security.Cryptography.RSA/tests/KeyGeneration.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ namespace System.Security.Cryptography.Rsa.Tests
88
public class KeyGeneration
99
{
1010
[Fact]
11+
[ActiveIssue(1984, PlatformID.AnyUnix)]
1112
public static void GenerateMinKey()
1213
{
1314
GenerateKey(rsa => GetMin(rsa.LegalKeySizes));
1415
}
1516

1617
[Fact]
18+
[ActiveIssue(1984, PlatformID.AnyUnix)]
1719
public static void GenerateSecondMinKey()
1820
{
1921
GenerateKey(rsa => GetSecondMin(rsa.LegalKeySizes));

0 commit comments

Comments
 (0)