dotfiles/sbcl/.quicklisp/dists/quicklisp/software/usocket-0.8.3/usocket-test.asd
2020-01-20 14:13:08 -05:00

23 lines
676 B
Common Lisp

;;;; -*- 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 "test"
:serial t
:components ((:file "package")
(:file "test-usocket")
(:file "test-condition")
(:file "test-datagram")
(:file "wait-for-input")))))
(defmethod perform ((op test-op) (c (eql (find-system :usocket-test))))
(funcall (intern "DO-TESTS" "USOCKET-TEST")))