source: tags/1.5.0/contrib/abcl-build/abcl-build-tests.asd

Last change on this file was 15012, checked in by Mark Evenson, 7 years ago

Fix loading of ABCL-BUILD in absence of Quicklisp

File size: 841 bytes
Line 
1(defsystem abcl-build-tests
2  :description "Test ABCL build system."
3  :defsystem-depends-on (prove-asdf)
4  :depends-on (abcl-build
5               prove)
6  :perform (test-op (op c)
7                    (symbol-call :prove-asdf 'run-test-system c))
8  :components ((:module package
9                        :pathname "build/t/"
10                        :components ((:file "package")))
11               (:module build
12                        :depends-on (package)
13                        :pathname "build/t/"
14                        :components ((:test-file "util")
15                                     (:test-file "install")
16                                     (:test-file "ant")
17                                     (:test-file "maven")
18                                     (:test-file "abcl-build")))))
19
20                                     
21
22
Note: See TracBrowser for help on using the repository browser.