4 #+sb-building-contrib :pathname
5 #+sb-building-contrib "SYS:CONTRIB;SB-COVER;"
6 :components ((:file "cover")))
8 (defsystem sb-cover-tests
9 :components ((:file "tests")))
11 (defmethod perform :after ((o load-op) (c (eql (find-system :sb-cover))))
14 (defmethod perform ((o test-op) (c (eql (find-system :sb-cover))))
15 (operate 'load-op 'sb-cover-tests)
16 (operate 'test-op 'sb-cover-tests))