small changes to the reverser test
[iolib.git] / iolib.asd
blobd9ba2225144400edd04cc94f7b882a2f7bc5d7dc
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; indent-tabs-mode: nil -*-
3 (in-package :common-lisp-user)
5 (asdf:defsystem :iolib
6   :description "I/O library."
7   :author "Stelian Ionescu <sionescu@common-lisp.net>"
8   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
9   :version "0.5.4"
10   :licence "LLGPL-2.1"
11   :depends-on (:io.multiplex :io.streams :net.sockets)
12   :pathname (merge-pathnames (make-pathname :directory '(:relative "iolib"))
13                              *load-truename*)
14   :components ((:file "pkgdcl")))
16 (defmethod asdf:perform ((o asdf:test-op) (c (eql (asdf:find-system :iolib))))
17   (asdf:operate 'asdf:test-op :iolib-tests))
19 (defmethod asdf:operation-done-p ((o asdf:test-op) (c (eql (asdf:find-system :iolib))))
20   nil)