-
Notifications
You must be signed in to change notification settings - Fork 1
/
anatevka-tests.asd
29 lines (28 loc) · 1.03 KB
/
anatevka-tests.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
;;;; anatevka-tests.asd
(asdf:defsystem #:anatevka-tests
:description "Regression tests for Anatevka."
:author "Eric Peterson <[email protected]>, Peter Karalekas <[email protected]>"
:depends-on (#:anatevka
#:fiasco
#:uiop
#:closer-mop
#:trivial-garbage
)
:perform (asdf:test-op (o s)
(uiop:symbol-call ':anatevka-tests
'#:run-anatevka-tests))
:pathname "tests/"
:serial t
:components ((:file "package")
(:file "suite")
(:file "node")
(:file "dryad")
(:module "operations"
:serial t
:components ((:file "graft")
(:file "augment")
(:file "expand")
(:file "contract")
(:file "multireweight")
(:file "reweight")))
(:file "blossom")))