X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=wol.asd;h=e4ab74854e5f51bdc567050f731db9cc5b9be72e;hb=c28c5678e980a71b9f3d23650b0323ccb75198c4;hp=7adb3ef9ec3d60bac560e56c1cc7d40538383d1a;hpb=d91ff3b4d9cdcae003420c04609ea736161c7e65;p=wol.git diff --git a/wol.asd b/wol.asd index 7adb3ef..e4ab748 100644 --- a/wol.asd +++ b/wol.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: July 2003 ;;;; -;;;; $Id: wol.asd,v 1.3 2003/07/18 21:34:18 kevin Exp $ +;;;; $Id: wol.asd,v 1.7 2003/08/10 05:16:52 kevin Exp $ ;;;; ;;;; This file and Wol are Copyright (c) 2003 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -26,7 +26,7 @@ (in-package #:wol-system) (defsystem wol - :depends-on (:kmrcl :modlisp :lml2 :hyperobject :base64 + :depends-on (:kmrcl :modlisp :lml2 :hyperobject :base64 :puri #-allegro :acl-compat) :components ((:file "package") @@ -38,4 +38,20 @@ (:file "sessions" :depends-on ("classes")) (:file "uri" :depends-on ("classes")) (: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"))) +