usocket-test.asd - clic - Clic is an command line interactive client for gopher written in Common LISP
(HTM) git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
usocket-test.asd (676B)
---
1 ;;;; -*- Mode: Lisp -*-
2
3 ;;;; See the LICENSE file for licensing information.
4
5 (defsystem usocket-test
6 :name "usocket test"
7 :author "Erik Enge"
8 :maintainer "Chun Tian (binghe)"
9 :version (:read-file-form "version.sexp")
10 :licence "MIT"
11 :description "Tests for usocket"
12 :depends-on (:usocket-server
13 :rt)
14 :components ((:module "test"
15 :serial t
16 :components ((:file "package")
17 (:file "test-usocket")
18 (:file "test-condition")
19 (:file "test-datagram")
20 (:file "wait-for-input")))))
21
22 (defmethod perform ((op test-op) (c (eql (find-system :usocket-test))))
23 (funcall (intern "DO-TESTS" "USOCKET-TEST")))