X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Ftest.lisp;h=b6e85dbd6d9a20de7088a19aec8f31c2fa97ae94;hb=d71409025cf489343851dc844e5619f5aa7754bc;hp=f5c8a8242b54bc6c888c9a39aaf7a72f6bc5cc5e;hpb=f464b03133a6709d14fc99f98d896563fab39392;p=fiveam.git diff --git a/src/test.lisp b/src/test.lisp index f5c8a82..b6e85db 100644 --- a/src/test.lisp +++ b/src/test.lisp @@ -46,8 +46,9 @@ If DEPENDS-ON is a symbol it is interpreted as `(AND depending on another. SUITE defaults to the current value of *SUITE*." - (destructuring-bind (name &key depends-on (suite nil suite-supplied-p)) + (destructuring-bind (name &key depends-on (suite nil suite-supplied-p) (compile-at :run-time)) (ensure-list name) + (declare (type (member :run-time :definition-time) compile-at)) (let (description) (setf description (if (stringp (car body)) (pop body) @@ -58,7 +59,10 @@ SUITE defaults to the current value of *SUITE*." :runtime-package ,*package* :test-lambda (lambda () - (funcall (compile nil '(lambda () ,@body)))) + ,@(ecase compile-at + (:run-time `((funcall (let ((*package* ,*package*)) + (compile nil '(lambda () ,@body)))))) + (:definition-time body))) :description ,description :depends-on ',depends-on)) ,(if suite-supplied-p