tusocket-test.asd - clic - Clic is an command line interactive client for gophe… | |
git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/ | |
Log | |
Files | |
Refs | |
Tags | |
LICENSE | |
--- | |
tusocket-test.asd (835B) | |
--- | |
1 ;;;; -*- Mode: Lisp -*- | |
2 ;;;; $Id: usocket-test.asd 46 2006-02-06 20:50:07Z ehuelsmann $ | |
3 ;;;; $URL: svn+ssh://common-lisp.net/project/usocket/svn/usocket/trunk/t… | |
4 | |
5 ;;;; See the LICENSE file for licensing information. | |
6 | |
7 (defsystem usocket-test | |
8 :name "usocket test" | |
9 :author "Erik Enge" | |
10 :maintainer "Chun Tian (binghe)" | |
11 :version (:read-file-form "version.sexp") | |
12 :licence "MIT" | |
13 :description "Tests for usocket" | |
14 :depends-on (:usocket-server | |
15 :rt) | |
16 :components ((:module "test" | |
17 :serial t | |
18 :components ((:file "package") | |
19 (:file "test-usocket") | |
20 (:file "test-condition") | |
21 (:file "test-datagram") | |
22 (:file "wait-for-input"))))) | |
23 | |
24 (defmethod perform ((op test-op) (c (eql (find-system :usocket-test)))) | |
25 (funcall (intern "DO-TESTS" "USOCKET-TEST"))) |