forked from usocket/usocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusocket-test.asd
More file actions
21 lines (19 loc) · 786 Bytes
/
usocket-test.asd
File metadata and controls
21 lines (19 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;;; -*- Mode: Lisp -*-
;;;; See the LICENSE file for licensing information.
(defsystem usocket-test
:name "usocket test"
:author "Erik Enge"
:maintainer "Chun Tian (binghe)"
:version (:read-file-form "version.sexp")
:licence "MIT"
:description "Tests for usocket"
:depends-on (:usocket-server :rt)
:components ((:module "tests"
:serial t
:components ((:file "package")
(:file "test-usocket")
(:file "test-condition")
(:file "test-datagram")
(:file "test-timeout")
(:file "wait-for-input"))))
:perform (test-op (o c) (symbol-call :usocket-test :do-tests)))