source: trunk/abcl/abcl-prove.asd

Last change on this file was 15714, checked in by Mark Evenson, 10 months ago

1.9.2: release metadata

File size: 1.6 KB
Line 
1;;; -*- Mode: LISP; Syntax: COMMON-LISP -*-
2(defsystem :abcl-prove
3  :version "1.9.2"
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(defsystem :abcl-prove/closer-mop
30  :defsystem-depends-on (prove-asdf)
31  :depends-on (prove closer-mop)
32  :perform (test-op (o c)
33              (uiop:symbol-call :prove-asdf 'run-test-system c))
34  :components ((:module t
35                :components ((:test-file "mop-specializer")))))
36
37 
38
39
40
41
42
43
44 
45 
Note: See TracBrowser for help on using the repository browser.