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)))
|