aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/standalone/ECTesterStandalone.java
diff options
context:
space:
mode:
authordavidhofman2021-09-05 19:41:18 +0200
committerGitHub2021-09-05 19:41:18 +0200
commitf1f6ca75524d152e347be8926fd43c98aeb504ac (patch)
tree69856c981c94565929e7348386af03cbb3acf929 /src/cz/crcs/ectester/standalone/ECTesterStandalone.java
parent25201922f403b18b01962f8154263d74fbfe2651 (diff)
downloadECTester-f1f6ca75524d152e347be8926fd43c98aeb504ac.tar.gz
ECTester-f1f6ca75524d152e347be8926fd43c98aeb504ac.tar.zst
ECTester-f1f6ca75524d152e347be8926fd43c98aeb504ac.zip
Implement StandaloneEdgeCasesSuite. (#11)
* Partially implement StandaloneEdgeCasesSuite. * Partially implement StandaloneEdgeCasesSuite (2). * Add S=0 and S=1 tests to StandaloneEdgeCasesSuite. * Finish implementing StandaloneEdgeCasesSuite. * Add author information to StandaloneEdgeCasesSuite. * Remove unnecessary comment.
Diffstat (limited to 'src/cz/crcs/ectester/standalone/ECTesterStandalone.java')
-rw-r--r--src/cz/crcs/ectester/standalone/ECTesterStandalone.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cz/crcs/ectester/standalone/ECTesterStandalone.java b/src/cz/crcs/ectester/standalone/ECTesterStandalone.java
index 1be0df4..637152a 100644
--- a/src/cz/crcs/ectester/standalone/ECTesterStandalone.java
+++ b/src/cz/crcs/ectester/standalone/ECTesterStandalone.java
@@ -316,6 +316,7 @@ public class ECTesterStandalone {
new StandaloneInvalidSuite(null, null, null),
new StandaloneDegenerateSuite(null, null, null),
new StandaloneCofactorSuite(null, null, null),
+ new StandaloneEdgeCasesSuite(null, null, null),
new StandaloneSignatureSuite(null, null, null),
new StandaloneCompositeSuite(null, null, null),
new StandaloneTwistSuite(null, null, null),
@@ -765,6 +766,9 @@ public class ECTesterStandalone {
case "invalid":
suite = new StandaloneInvalidSuite(writer, cfg, cli);
break;
+ case "edge-cases":
+ suite = new StandaloneEdgeCasesSuite(writer, cfg, cli);
+ break;
case "signature":
suite = new StandaloneSignatureSuite(writer, cfg, cli);
break;