Last change
on this file since 15557 was
15557,
checked in by Mark Evenson, 6 months ago
|
abcl-introspect: fix and move test into contrib
Failing test was actually returning additional information that was
causing the test to fail, namely a block marker from Primitives.java:
((:LEXICAL-VARIABLE A 10) (:LEXICAL-VARIABLE B 20)
(:BLOCK BAR #<org.armedbear.lisp.Primitives$BlockMarker?@ca46a46>))
The "extra" stuff which ABCL-INTROSPECT adds to the SYSTEM package may
not always be available if say JSS fails to load. Make this explicit
by moving the test.
|
File size:
609 bytes
|
Line | |
---|
1 | ;;;; -*- Mode: LISP -*- |
---|
2 | |
---|
3 | (defsystem abcl-introspect-test |
---|
4 | :author "Mark Evenson" |
---|
5 | :long-description "<urn:abcl.org/release/1.8.0/contrib/abcl-introspect/test#>" |
---|
6 | :version "2.1.0" |
---|
7 | :defsystem-depends-on (prove-asdf) |
---|
8 | :depends-on (abcl-asdf ;; locate various testing dependencies via ABCL-ASDF |
---|
9 | prove) |
---|
10 | :components ((:module tests |
---|
11 | :pathname "t/" |
---|
12 | :components ((:test-file "disassemble") |
---|
13 | (:test-file "environments")))) |
---|
14 | :perform (asdf:test-op (op c) |
---|
15 | (uiop:symbol-call :prove-asdf 'run-test-system c))) |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.