1.0.22.22: (SETF FIND-CLASSOID) to drop DEFTYPE lambda-lists and source-locations
[sbcl/tcr.git] / contrib / sb-cover / sb-cover.asd
blobb8009a6f4f93be2e8a1a446980105afc2be85f37
1 ;;; -*-  Lisp -*-
3 (defsystem sb-cover
4     #+sb-building-contrib :pathname
5     #+sb-building-contrib "SYS:CONTRIB;SB-COVER;"
6     :depends-on (sb-md5)
7     :components ((:file "cover")))
9 (defsystem sb-cover-tests
10     :components ((:file "tests")))
12 (defmethod perform :after ((o load-op) (c (eql (find-system :sb-cover))))
13   (provide 'sb-cover))
15 (defmethod perform ((o test-op) (c (eql (find-system :sb-cover))))
16   (operate 'load-op 'sb-cover-tests)
17   (operate 'test-op 'sb-cover-tests))