2018-12-01 19:12:05 +00:00
|
|
|
packageName = "constantine"
|
2018-07-24 14:52:18 +00:00
|
|
|
version = "0.0.1"
|
|
|
|
author = "Status Research & Development GmbH"
|
2018-09-05 04:38:34 +00:00
|
|
|
description = "This library provides constant time big int primitives."
|
2018-07-24 14:52:18 +00:00
|
|
|
license = "MIT or Apache License 2.0"
|
|
|
|
srcDir = "src"
|
|
|
|
|
|
|
|
### Dependencies
|
2020-02-22 15:37:31 +00:00
|
|
|
requires "nim >= 1.1.0"
|
2018-07-24 14:52:18 +00:00
|
|
|
|
|
|
|
### Helper functions
|
2020-02-23 17:27:26 +00:00
|
|
|
proc test(path: string) =
|
2018-07-24 14:52:18 +00:00
|
|
|
if not dirExists "build":
|
|
|
|
mkDir "build"
|
2020-02-23 17:27:26 +00:00
|
|
|
# Compilation language is controlled by WEAVE_TEST_LANG
|
|
|
|
var lang = "c"
|
|
|
|
if existsEnv"TEST_LANG":
|
|
|
|
lang = getEnv"TEST_LANG"
|
|
|
|
|
|
|
|
echo "\n========================================================================================"
|
|
|
|
echo "Running ", path
|
|
|
|
echo "========================================================================================"
|
|
|
|
exec "nim " & lang & " --verbosity:0 --outdir:build -r --hints:off --warnings:off " & path
|
2018-07-24 14:52:18 +00:00
|
|
|
|
|
|
|
### tasks
|
|
|
|
task test, "Run all tests":
|
2020-02-23 17:27:26 +00:00
|
|
|
# -d:testingCurves is configured in a *.nim.cfg for convenience
|
|
|
|
test "tests/test_primitives.nim"
|
|
|
|
test "tests/test_io_bigints.nim"
|
|
|
|
test "tests/test_bigints.nim"
|
|
|
|
test "tests/test_bigints_multimod.nim"
|
|
|
|
test "tests/test_bigints_vs_gmp.nim"
|
|
|
|
test "tests/test_finite_fields.nim"
|
|
|
|
test "tests/test_finite_fields_vs_gmp.nim"
|
|
|
|
test "tests/test_finite_fields_powinv.nim"
|
|
|
|
|
|
|
|
task test_no_gmp, "Run tests that don't require GMP":
|
|
|
|
# -d:testingCurves is configured in a *.nim.cfg for convenience
|
|
|
|
test "tests/test_primitives.nim"
|
|
|
|
test "tests/test_io_bigints.nim"
|
|
|
|
test "tests/test_bigints.nim"
|
|
|
|
test "tests/test_bigints_multimod.nim"
|
|
|
|
test "tests/test_finite_fields.nim"
|
|
|
|
test "tests/test_finite_fields_powinv.nim"
|