-
Notifications
You must be signed in to change notification settings - Fork 1
/
aether-tests.asd
36 lines (35 loc) · 1.27 KB
/
aether-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
31
32
33
34
35
36
;;;; aether-tests.asd
;;;;
;;;; Author: Eric Peterson, Peter Karalekas
(asdf:defsystem #:aether-tests
:description "Regression tests for AETHER."
:author "Eric Peterson <peterson.eric.c@gmail.com>, Peter Karalekas <peter@karalekas.com>"
:depends-on (#:aether
#:fiasco
#:uiop
)
:perform (asdf:test-op (o s)
(uiop:symbol-call ':aether-tests
'#:run-aether-tests))
:pathname "tests/"
:serial t
:components ((:file "package")
(:file "suite")
(:file "queue")
(:file "cheap-heap")
(:file "event")
(:file "network")
(:file "process")
(:file "process-tree")
(:file "cast")
(:file "recursive-lock")
(:module "examples"
:serial t
:components ((:file "coloring")
(:file "flooding")
(:file "lock")
(:file "data-frame")
(:file "distributed-mst")
(:file "tree-coloring")
(:file "tree-operations")
))))