-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-ecc.test.asd
35 lines (34 loc) · 1.43 KB
/
cl-ecc.test.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;;;; cl-ecc.test.asd
(asdf:defsystem #:cl-ecc.test
:depends-on (#:cl-ecc
#:alexandria
#:iterate
#:ironclad
#:lisp-unit2
#:external-program)
:serial t
:components ((:module "core"
:pathname "test"
:serial t
:components
((:file "package")
(:module "ecc"
:pathname ""
:serial t
:components
((:file "utils")
(:file "model")))
(:module "suites"
:serial t
:components
((:file "mod-math-suite")
(:file "init-suite")
(:file "curve-suite")
(:file "print-suite")
(:file "ecdsa-suite")))
(:module "test-vectors"
:serial t
:components
((:file "secp192r1-test")
(:file "secp256k1-test")))
(:file "cl-ecc.test" :depends-on (ecc suites test-vectors))))))