-
Notifications
You must be signed in to change notification settings - Fork 4
/
avm-test.asd
51 lines (48 loc) · 1.6 KB
/
avm-test.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
46
47
48
49
50
51
#|
This file is a part of avm project.
Copyright (c) 2016 Masayuki Takagi (kamonama@gmail.com)
|#
(in-package :cl-user)
(defpackage avm-test-asd
(:use :cl :asdf))
(in-package :avm-test-asd)
(defsystem avm-test
:author "Masayuki Takagi"
:license "MIT"
:depends-on (:avm
:prove)
:components ((:module "t"
:components
((:test-file "avm")
(:file "util")
(:module "lang"
:serial t
:components
((:test-file "expand-macro")
(:test-file "convert-implicit-progn")
(:test-file "convert-functions")
(:test-file "free-variable")
(:module "compiler"
:serial t
:components
((:module "lisp"
:serial t
:components
((:test-file "compile")))
(:module "cuda"
:serial t
:components
((:test-file "k-normal")
(:test-file "compile")))
))))
(:module "api"
:serial t
:components
((:test-file "cuda")
(:test-file "array")
(:test-file "macro"))))))
:description "Test system for avm"
:defsystem-depends-on (:prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))