b14529c6e8355559f92bd2f68a9300d91d8624cb
[sbcl.git] / contrib / sb-aclrepl / sb-aclrepl.asd
1 ;;; -*-  Lisp -*-
2
3 (defpackage #:sb-aclrepl-system (:use #:asdf #:cl))
4 (in-package #:sb-aclrepl-system)
5
6 (require 'sb-rt)
7
8 (defsystem sb-aclrepl
9     :version "0.6"
10     :author "Kevin Rosenberg <kevin@rosenberg.net>"
11     :description "An AllegroCL compatible REPL"
12     :components ((:file "repl")
13                  (:file "inspect" :depends-on ("repl"))
14                  (:file "debug" :depends-on ("repl"))
15                  (:file "tests" :depends-on ("debug" "inspect"))))
16
17 (defmethod perform ((o test-op) (c (eql (find-system :sb-aclrepl))))
18   (or (funcall (intern "DO-TESTS" (find-package "SB-RT")))
19       (error "test-op failed")))
20