source: trunk/abcl/contrib/asdf-jar/t/package-asdf.lisp

Last change on this file was 15693, checked in by Mark Evenson, 12 months ago

asdf-jar: fix test dependencies

Use ASDF and QUICKLISP-ABCL to declare and install dependencies.

File size: 529 bytes
Line 
1(asdf:make :asdf-jar)
2
3(prove:plan 1)
4;;;; Systems like JSS are part of the ABCL-CONTRIB, therefore usually
5;;;; reside in jar files, for which copying fasls is currently broken
6;;;; <https://github.com/armedbear/abcl/issues/476>
7(asdf:clear-system :jss)
8(asdf:make :jss)
9(prove:ok
10 (asdf-jar:package :jss :verbose t :fasls nil)
11 "Able to package JSS")
12
13(asdf:make :quicklisp-abcl)
14
15(prove:plan 1)
16(prove:ok
17 (asdf-jar:package :hunchentoot :verbose t :fasls nil)
18 (format nil "Able to package HUNCHENTOOT"))
19
20(prove:finalize)
21
22
23
Note: See TracBrowser for help on using the repository browser.