-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanatevka-tests.asd
30 lines (29 loc) · 1.06 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
30
;;;; anatevka-tests.asd
(asdf:defsystem #:anatevka-tests
:description "Regression tests for Anatevka."
:author "Eric Peterson <peterson.eric.c@gmail.com>, Peter Karalekas <peter@karalekas.com>"
: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")
(:file "cases")))