-
Notifications
You must be signed in to change notification settings - Fork 31
/
abcl-prove.asd
45 lines (34 loc) · 1.61 KB
/
abcl-prove.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;; -*- Mode: LISP; Syntax: COMMON-LISP -*-
(defsystem :abcl-prove
:version "1.9.2"
:defsystem-depends-on (prove-asdf)
:depends-on (prove)
:perform (test-op (o c)
(uiop:symbol-call :prove-asdf 'run-test-system c))
:components ((:module t
:components ((:test-file "abcl-asdf")
(:test-file "arithmetic")
(:test-file "ash")
(:test-file "byte-vectors")
(:test-file "compiler-stack-inconsistency")
(:test-file "compiler")
(:test-file "decode-float")
(:test-file "disassemble")
(:test-file "format-dollar")
(:test-file "generic-method")
(:test-file "java-arrays")
(:test-file "java-call-sites")
(:test-file "jcoerce-numerics")
(:test-file "pathname")
(:test-file "print-symbol")
(:test-file "read-suppress")
(:test-file "run-program")
(:test-file "url-stream")
(:test-file "without-use-cl")))))
(defsystem :abcl-prove/closer-mop
:defsystem-depends-on (prove-asdf)
:depends-on (prove closer-mop)
:perform (test-op (o c)
(uiop:symbol-call :prove-asdf 'run-test-system c))
:components ((:module t
:components ((:test-file "mop-specializer")))))