Changeset 13806 for trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd
- Timestamp:
- 01/25/12 12:50:26 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd
r13804 r13806 19 19 :depends-on (packages)))) 20 20 21 22 (eval-when (:compile-toplevel :load-toplevel)23 (load "~/quicklisp/setup")24 (apply (intern (symbol-name 'quickload) 'quicklisp) "rt"))25 26 21 (defsystem :abcl-asdf-test 27 22 :author "Mark Evenson" 28 :depends-on (abcl -asdf quicklisp rt)23 :depends-on (abcl abcl-test-lisp) 29 24 :components 30 25 ((:module tests :components … … 32 27 (:file "maven"))))) 33 28 34 35 29 (defmethod perform ((o test-op) (c (eql (find-system 'abcl-asdf)))) 36 30 "Invoke tests with (asdf:test-system 'abcl-asdf)." 37 31 (asdf:load-system 'abcl-asdf-test) 38 39 32 (funcall (intern (symbol-name 'run) 'abcl-asdf-test))) 40 33
Note: See TracChangeset
for help on using the changeset viewer.