X-Git-Url: http://git.kpe.io/?p=wol.git;a=blobdiff_plain;f=wol.asd;h=e75c959be37f886f8b47513f54ca95e836e42db8;hp=7adb3ef9ec3d60bac560e56c1cc7d40538383d1a;hb=HEAD;hpb=d91ff3b4d9cdcae003420c04609ea736161c7e65 diff --git a/wol.asd b/wol.asd index 7adb3ef..e75c959 100644 --- a/wol.asd +++ b/wol.asd @@ -7,26 +7,27 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: July 2003 ;;;; -;;;; $Id: wol.asd,v 1.3 2003/07/18 21:34:18 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) #+allegro (require :pxml) #+allegro (require :sock) -#+(and allegro unix) (require :ipc) +#+(and allegro-v6.2 unix) (require :ipc) (defpackage #:wol-system (:use #:cl #:asdf)) (in-package #:wol-system) (defsystem wol - :depends-on (:kmrcl :modlisp :lml2 :hyperobject :base64 + :depends-on (kmrcl modlisp lml2 hyperobject cl-base64 puri #-allegro :acl-compat) :components ((:file "package") @@ -38,4 +39,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"))) +