sbcl stuff
This commit is contained in:
parent
1d1dbc34df
commit
5d91dbb667
335 changed files with 119806 additions and 1 deletions
|
|
@ -0,0 +1,23 @@
|
|||
;;;; -*- 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")))
|
||||
Loading…
Add table
Add a link
Reference in a new issue