X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=wol.asd;h=46b8b3f7f161fcd6474f36c03e55571d0bdb3c60;hb=ba01a7216c7a4c15c103525654fe10ea5845afb1;hp=241638b03ac6784913216908acac911472290f06;hpb=ad10f85ccddf4cdc4fdabe5bc28622975338d552;p=wol.git diff --git a/wol.asd b/wol.asd index 241638b..46b8b3f 100644 --- a/wol.asd +++ b/wol.asd @@ -7,14 +7,15 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: July 2003 ;;;; -;;;; $Id: wol.asd,v 1.5 2003/08/05 23:00:28 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file and Wol are Copyright (c) 2003 by Kevin M. Rosenberg ;;;; ************************************************************************* (in-package #:cl-user) -#+(or cmu lispworks (and allegro (not common-lisp-controller))) (require :aserve) +#+(or cmu lispworks sbcl openmcl + (and allegro (not common-lisp-controller))) (require :aserve) #+(and allegro common-lisp-controller) (c-l-c::original-require :aserve) #+allegro (require :smtp) #+allegro (require :phtml) @@ -26,7 +27,7 @@ (in-package #:wol-system) (defsystem wol - :depends-on (:kmrcl :modlisp :lml2 :hyperobject :base64 :puri + :depends-on (kmrcl modlisp lml2 hyperobject cl-base64 puri #-allegro :acl-compat) :components ((:file "package") @@ -40,3 +41,18 @@ (:file "log" :depends-on ("classes")) (:file "color-picker" :depends-on ("package")) )) + +(defmethod perform ((o test-op) (c (eql (find-system 'wol)))) + (operate 'load-op 'wol-tests) + (operate 'test-op 'wol-tests :force t)) + +(defsystem wol-tests + :depends-on (wol xlunit) + :components ((:file "tests"))) + +(defmethod perform ((o test-op) (c (eql (find-system 'wol-tests)))) + (operate 'load-op 'wol-tests) + (or (funcall (intern (symbol-name '#:do-tests) + (find-package '#:wol-tests))) + (error "test-op failed"))) +