-
Notifications
You must be signed in to change notification settings - Fork 40
/
cl-async-test.asd
33 lines (33 loc) · 1.01 KB
/
cl-async-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
(asdf:defsystem cl-async-test
:author "Andrew Danger Lyon <orthecreedence@gmail.com>"
:license "MIT"
:version "0.2"
:description "TESTS FOR Asynchronous operations for Common Lisp."
:depends-on (#:cffi
#:cl-async
#:cl-async-ssl
#:fiveam
#:bordeaux-threads
#:usocket
#:flexi-streams
#:ironclad)
:components
((:module test
:serial t
:components ((:file "util")
(:file "base")
(:file "event")
(:file "dns")
(:file "tcp")
(:file "pipe")
(:file "async-stream")
(:file "threading")
(:file "tcp-ssl")
(:file "signal")
(:file "idle")
(:file "poll")
(:file "benchmarks")
(:file "run")
(:file "filesystem")
(:file "process")
(:file "fsevent")))))