diff options
author | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 17:54:55 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@gmail.com> | 2022-06-23 17:54:55 +0700 |
commit | 2e2901ceac1291fab8c2ed9828bceded00440a16 (patch) | |
tree | 6abcd413230e769ce4a925cb5724d6d4e53d82e7 /crypto/test/src/math | |
parent | Target framework v4.0 (diff) | |
download | BouncyCastle.NET-ed25519-2e2901ceac1291fab8c2ed9828bceded00440a16.tar.xz |
New build organization
- TargetFrameworks netstandard2.0;net40
Diffstat (limited to 'crypto/test/src/math')
4 files changed, 5 insertions, 5 deletions
diff --git a/crypto/test/src/math/ec/rfc7748/test/X25519Test.cs b/crypto/test/src/math/ec/rfc7748/test/X25519Test.cs index 336c70abf..0b242a3c0 100644 --- a/crypto/test/src/math/ec/rfc7748/test/X25519Test.cs +++ b/crypto/test/src/math/ec/rfc7748/test/X25519Test.cs @@ -87,7 +87,7 @@ namespace Org.BouncyCastle.Math.EC.Rfc7748.Tests CheckIterated(1000); } - [Test, Ignore] + [Test, Explicit] public void TestX25519IteratedFull() { CheckIterated(1000000); diff --git a/crypto/test/src/math/ec/rfc7748/test/X448Test.cs b/crypto/test/src/math/ec/rfc7748/test/X448Test.cs index c5493f4ac..5737ebe7f 100644 --- a/crypto/test/src/math/ec/rfc7748/test/X448Test.cs +++ b/crypto/test/src/math/ec/rfc7748/test/X448Test.cs @@ -273,7 +273,7 @@ namespace Org.BouncyCastle.Math.EC.Rfc7748.Tests CheckIterated(1000); } - [Test, Ignore] + [Test, Explicit] public void TestX448IteratedFull() { CheckIterated(1000000); diff --git a/crypto/test/src/math/ec/test/ECAlgorithmsTest.cs b/crypto/test/src/math/ec/test/ECAlgorithmsTest.cs index a6cef7e9d..dbbd0a328 100644 --- a/crypto/test/src/math/ec/test/ECAlgorithmsTest.cs +++ b/crypto/test/src/math/ec/test/ECAlgorithmsTest.cs @@ -24,7 +24,7 @@ namespace Org.BouncyCastle.Math.EC.Tests DoTestSumOfMultiplies(x9); } - [Test, Ignore] + [Test, Explicit] public void TestSumOfMultipliesComplete() { foreach (X9ECParameters x9 in GetTestCurves()) @@ -41,7 +41,7 @@ namespace Org.BouncyCastle.Math.EC.Tests DoTestSumOfTwoMultiplies(x9); } - [Test, Ignore] + [Test, Explicit] public void TestSumOfTwoMultipliesComplete() { foreach (X9ECParameters x9 in GetTestCurves()) diff --git a/crypto/test/src/math/ec/test/ECPointPerformanceTest.cs b/crypto/test/src/math/ec/test/ECPointPerformanceTest.cs index 6db6c3004..e36947b11 100644 --- a/crypto/test/src/math/ec/test/ECPointPerformanceTest.cs +++ b/crypto/test/src/math/ec/test/ECPointPerformanceTest.cs @@ -172,7 +172,7 @@ namespace Org.BouncyCastle.Math.EC.Tests return (totalRate - minRate - maxRate) / (NUM_ROUNDS - 2); } - [Test, Ignore] + [Test, Explicit] public void TestMultiply() { ArrayList nameList = new ArrayList(); |