File: usocket-test.asd

package info (click to toggle)
cl-usocket 0.8.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,020 kB
  • sloc: lisp: 7,319; makefile: 24
file content (21 lines) | stat: -rw-r--r-- 786 bytes parent folder | download | duplicates (4)
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)))