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

Last change on this file since 15482 was 15482, checked in by Mark Evenson, 2 years ago

Test COMPILE-FILE/LOAD machinery in pathological situations

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 "java-arrays")
19                             (:test-file "java-call-sites")
20                             (:test-file "jcoerce-numerics")
21                             (:test-file "pathname")
22                             (:test-file "print-symbol")
23                             (:test-file "read-suppress")
24                             (:test-file "run-program")
25                             (:test-file "url-stream")
26                             (:test-file "without-use-cl")))))
27
28
29
30
31
32
33
34 
35 
Note: See TracBrowser for help on using the repository browser.