source: trunk/abcl/abcl-prove.asd @ 15577

Last change on this file since 15577 was 15557, checked in by Mark Evenson, 15 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: 1.3 KB
Line 
1;;; -*- Mode: LISP; Syntax: COMMON-LISP -*-
2(defsystem :abcl-prove
3  :version "1.8.0"
4  :defsystem-depends-on (prove-asdf)
5  :depends-on (prove)
6  :perform (test-op (o c)
7              (uiop:symbol-call :prove-asdf 'run-test-system c))
8  :components ((:module t
9                :components ((:test-file "abcl-asdf")
10                             (:test-file "arithmetic")
11                             (:test-file "ash")
12                             (:test-file "byte-vectors")
13                             (:test-file "compiler-stack-inconsistency")
14                             (:test-file "compiler")
15                             (:test-file "decode-float")
16                             (:test-file "disassemble")
17                             (:test-file "format-dollar")
18                             (:test-file "generic-method")
19                             (:test-file "java-arrays")
20                             (:test-file "java-call-sites")
21                             (:test-file "jcoerce-numerics")
22                             (:test-file "pathname")
23                             (:test-file "print-symbol")
24                             (:test-file "read-suppress")
25                             (:test-file "run-program")
26                             (:test-file "url-stream")
27                             (:test-file "without-use-cl")))))
28
29
30
31
32
33
34
35 
36 
Note: See TracBrowser for help on using the repository browser.