aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorJ08nY2020-03-03 15:19:33 +0100
committerJ08nY2020-03-03 15:19:33 +0100
commit714c7509d66afdacd8e9ce0cfe94ec8ae7f76883 (patch)
treed428063eb8eb14ec47d0d455a05f505051aa05be /test
parent49018aa37f44b56292193b763ed4a8bb15389c30 (diff)
downloadpyecsca-codegen-714c7509d66afdacd8e9ce0cfe94ec8ae7f76883.tar.gz
pyecsca-codegen-714c7509d66afdacd8e9ce0cfe94ec8ae7f76883.tar.zst
pyecsca-codegen-714c7509d66afdacd8e9ce0cfe94ec8ae7f76883.zip
Add tests, for fixed Jacobian stuff.
Diffstat (limited to 'test')
-rw-r--r--test/test_builder.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_builder.py b/test/test_builder.py
index e43ae70..f2760ea 100644
--- a/test/test_builder.py
+++ b/test/test_builder.py
@@ -11,7 +11,8 @@ class BuilderTests(TestCase):
("basic", ["--platform", "HOST", "shortw", "projective", "add-1998-cmo", "dbl-1998-cmo", "z", "ltr(complete=True)", "."]),
("karatsuba", ["--platform", "HOST", "--mul", "KARATSUBA", "shortw", "projective", "add-1998-cmo", "dbl-1998-cmo", "z", "ltr(complete=True)", "."]),
("strip", ["--platform", "HOST", "--strip", "--no-remove", "shortw", "projective", "add-1998-cmo", "dbl-1998-cmo", "z", "ltr(complete=True)", "."]),
- ("montgom", ["--platform", "HOST", "--no-ecdsa", "montgom", "xz", "ladd-1987-m", "dbl-1987-m", "scale", "ldr()", "."])
+ ("montgom", ["--platform", "HOST", "--no-ecdsa", "montgom", "xz", "ladd-1987-m", "dbl-1987-m", "scale", "ldr()", "."]),
+ ("jacobian", ["--platform", "HOST", "--no-ecdsa", "shortw", "jacobian", "add-2007-bl", "dbl-2007-bl", "rtl()", "."])
])
def test_cli_build(self, name, args):
runner = CliRunner()