X-Git-Url: http://git.kpe.io/?p=xlunit.git;a=blobdiff_plain;f=xlunit.asd;h=a3f5e27b2ac603ae84f4161693385ba6b7bc3f86;hp=c7f293af20e0faba8ba17b02fe01833ffb6388be;hb=3d99efdf0959b199cc4b2e020c7692f650094f73;hpb=6c233c812b0e160d80e613bb3dfcedc59514e3e9 diff --git a/xlunit.asd b/xlunit.asd index c7f293a..a3f5e27 100644 --- a/xlunit.asd +++ b/xlunit.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2003 ;;;; -;;;; $Id: xlunit.asd,v 1.5 2003/08/04 19:31:34 kevin Exp $ +;;;; $Id: xlunit.asd,v 1.6 2003/08/05 22:56:25 kevin Exp $ ;;;; ************************************************************************* (defpackage #:xlunit-system (:use #:asdf #:cl)) @@ -34,14 +34,16 @@ )) (defmethod perform ((o test-op) (c (eql (find-system 'xlunit)))) - (oos 'load-op 'xlunit-tests :force t) - (oos 'test-op 'xlunit-tests :force t)) + (operate 'load-op 'xlunit-tests :force t) + (operate 'test-op 'xlunit-tests :force t)) (defsystem xlunit-tests :depends-on (xlunit) :components ((:file "tests"))) (defmethod perform ((o test-op) (c (eql (find-system 'xlunit-tests)))) + (operate 'load-op 'xlunit-tests) (or (funcall (intern (symbol-name '#:do-tests) (find-package '#:xlunit-tests))) (error "test-op failed"))) +