Last change
on this file since 14195 was
14195,
checked in by Mark Evenson, 9 years ago
|
abcl-asdf-0.9.0: patching to greater global stability of distributed references.
Bump version to indicate that we have greater faith of the stability of the interface.
N.b. seems to break [Jeannie](http://bitbucket.org/easye/jeannie/).
|
File size:
1.3 KB
|
Rev | Line | |
---|
[13340] | 1 | ;;;; -*- Mode: LISP -*- |
---|
| 2 | |
---|
[14170] | 3 | (asdf:defsystem :abcl-asdf |
---|
[13340] | 4 | :author "Mark Evenson" |
---|
[14195] | 5 | :version "0.9.0" |
---|
[13550] | 6 | :depends-on (jss) |
---|
[13340] | 7 | :components |
---|
[13550] | 8 | ((:module packages :pathname "" |
---|
| 9 | :components |
---|
| 10 | ((:file "packages"))) |
---|
| 11 | (:module base :pathname "" |
---|
| 12 | :components |
---|
| 13 | ((:file "abcl-asdf") |
---|
[13430] | 14 | (:file "asdf-jar" |
---|
| 15 | :depends-on ("abcl-asdf")) |
---|
| 16 | (:file "maven-embedder" |
---|
[13550] | 17 | :depends-on ("abcl-asdf" "asdf-jar"))) |
---|
| 18 | :depends-on (packages)))) |
---|
[13804] | 19 | |
---|
[14170] | 20 | (asdf:defsystem :abcl-asdf-test |
---|
[13804] | 21 | :author "Mark Evenson" |
---|
[14185] | 22 | :defsystem-depends-on (abcl-asdf) |
---|
[13804] | 23 | :components |
---|
[13808] | 24 | ((:module tests :serial t :components |
---|
| 25 | ((:file "example") |
---|
| 26 | (:file "maven") |
---|
| 27 | (:file "test"))))) |
---|
[13804] | 28 | |
---|
[13808] | 29 | #| |
---|
| 30 | (defmethod perform ((o test-op) (c (eql (find-system 'abcl-asdf-test)))) |
---|
| 31 | (funcall (intern (symbol-name 'run) 'abcl-asdf-test))) |
---|
| 32 | |
---|
[13804] | 33 | (defmethod perform ((o test-op) (c (eql (find-system 'abcl-asdf)))) |
---|
[13808] | 34 | (asdf:load-system :abcl-asdf-test)) |
---|
| 35 | (asdf:test-system :abcl-asdf-test)) |
---|
| 36 | |
---|
| 37 | ;;; FIXME |
---|
| 38 | (defmethod perform ((o test-op) (c (eql (find-system 'abcl-asdf)))) |
---|
[13804] | 39 | "Invoke tests with (asdf:test-system 'abcl-asdf)." |
---|
[13807] | 40 | (asdf:load-system 'abcl) |
---|
| 41 | (asdf:load-system 'abcl-test-lisp) |
---|
[13804] | 42 | (asdf:load-system 'abcl-asdf-test) |
---|
| 43 | (funcall (intern (symbol-name 'run) 'abcl-asdf-test))) |
---|
[13808] | 44 | |# |
---|
Note: See
TracBrowser
for help on using the repository browser.