X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=xlunit.asd;h=a3f5e27b2ac603ae84f4161693385ba6b7bc3f86;hb=626d4ad3a850e199e5b4a472c06ae92532c82ac8;hp=c7f293af20e0faba8ba17b02fe01833ffb6388be;hpb=6e195606e06173086a91616042adef3072633d92;p=xlunit.git 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"))) +