Last change
on this file was
13808,
checked in by Mark Evenson, 13 years ago
|
abcl-asdf: remove all the broken test framework references.
The system defintion ABCL-ASDF-TEST now loads again. Use
ABCL-ASDF-TEST:RUN as the executable symbol for manual tests.
|
File size:
703 bytes
|
Line | |
---|
1 | #| |
---|
2 | (abcl-asdf:resolve-dependencies "log4j" "log4j") |
---|
3 | |
---|
4 | (abcl-asdf:resolve-dependencies "org.armedbear.lisp" "abcl") |
---|
5 | |
---|
6 | |# |
---|
7 | |
---|
8 | ; TODO figure out what sort of test framework we can hook in. Probably ABCL-RT |
---|
9 | |
---|
10 | (in-package :abcl-asdf-test) |
---|
11 | |
---|
12 | ;;;;(deftest LOG4J.1 |
---|
13 | (defun test-LOG4J.1 () |
---|
14 | (let ((result (abcl-asdf:resolve-dependencies "log4j" "log4j"))) |
---|
15 | (and result |
---|
16 | (format *standard-output* "~&~A~%" result) |
---|
17 | (type-p result 'cons)))) |
---|
18 | ;;; t) |
---|
19 | |
---|
20 | |
---|
21 | ;;;;(deftest ABCL.1 |
---|
22 | (defun test-ABCL.1 () |
---|
23 | (let ((result (abcl-asdf:resolve-dependencies "org.armedbear.lisp" "abcl"))) |
---|
24 | (and result |
---|
25 | (format *standard-output* "~&~A~%" result) |
---|
26 | (type-p result 'cons)))) |
---|
27 | ;;; t) |
---|
28 | |
---|
29 | |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.