diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-27 11:40:35 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-10-27 11:40:35 +0700 |
commit | e47f8ba1a1a2df4f6f6f45e1e70ac7a3311246d0 (patch) | |
tree | 234aac79a190a2efd25e528579437fabbad58d8b /crypto | |
parent | Update version to 1.8.0-RC.3 (diff) | |
download | BouncyCastle.NET-ed25519-e47f8ba1a1a2df4f6f6f45e1e70ac7a3311246d0.tar.xz |
Exclude some tests for PORTABLE
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/test/src/security/test/SecureRandomTest.cs | 2 | ||||
-rw-r--r-- | crypto/test/src/security/test/TestDotNetUtil.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/test/src/security/test/SecureRandomTest.cs b/crypto/test/src/security/test/SecureRandomTest.cs index 4f05a286a..f93afc0aa 100644 --- a/crypto/test/src/security/test/SecureRandomTest.cs +++ b/crypto/test/src/security/test/SecureRandomTest.cs @@ -11,7 +11,7 @@ namespace Org.BouncyCastle.Security.Tests [TestFixture] public class SecureRandomTest { -#if !NETCF_1_0 +#if !(NETCF_1_0 || PORTABLE) [Test] public void TestCryptoApi() { diff --git a/crypto/test/src/security/test/TestDotNetUtil.cs b/crypto/test/src/security/test/TestDotNetUtil.cs index f880b388f..3354be0b9 100644 --- a/crypto/test/src/security/test/TestDotNetUtil.cs +++ b/crypto/test/src/security/test/TestDotNetUtil.cs @@ -1,4 +1,4 @@ -#if !(NETCF_1_0 || SILVERLIGHT) +#if !(NETCF_1_0 || SILVERLIGHT || PORTABLE) using System; using System.Security.Cryptography; |