X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-aclrepl%2Fsb-aclrepl.asd;h=0c5b8f81fa251add763b604da073af9b9de68d5e;hb=3e991f3ecd3a0a5ba50bc5b43c4ed0133c837701;hp=565f3e9119c90cef19e47232f6dc62ef71f85f7c;hpb=7ee29f16f6f741a4269b3cd536bc81b592c47fb5;p=sbcl.git diff --git a/contrib/sb-aclrepl/sb-aclrepl.asd b/contrib/sb-aclrepl/sb-aclrepl.asd index 565f3e9..0c5b8f8 100644 --- a/contrib/sb-aclrepl/sb-aclrepl.asd +++ b/contrib/sb-aclrepl/sb-aclrepl.asd @@ -4,14 +4,21 @@ (in-package #:sb-aclrepl-system) (defsystem sb-aclrepl - :version "0.5" - :components ((:file "repl") - (:file "inspect" :depends-on ("repl")))) + :author "Kevin Rosenberg " + :description "An AllegroCL compatible REPL" + :components ((:file "toplevel") + (:file "repl" :depends-on ("toplevel")) + (:file "inspect" :depends-on ("repl")) + (:file "debug" :depends-on ("repl")))) - -;; FIXME - test for successful compilation of sb-aclrepl (defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl)))) - (and (boundp 'sb-impl::*inspect-fun*) - (boundp 'sb-int:*repl-prompt-fun*) - (boundp 'sb-int:*repl-read-form-fun*))) + (oos 'load-op 'sb-aclrepl-tests) + (oos 'test-op 'sb-aclrepl-tests)) + +(defsystem sb-aclrepl-tests + :depends-on (sb-rt) + :components ((:file "tests"))) +(defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl-tests)))) + (or (funcall (intern "DO-TESTS" (find-package "SB-RT"))) + (error "test-op failed")))