-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmgl-pax-test.asd
42 lines (40 loc) · 1.43 KB
/
mgl-pax-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
;;;; See comment mgl-pax-bootstrap.asd for why this is a separate .asd
;;;; file.
(asdf:defsystem "mgl-pax-test"
:licence "MIT, see COPYING."
:author "Gábor Melis"
:mailto "mega@retes.hu"
:homepage ""
:bug-tracker ""
:source-control ""
:description "Test system for MGL-PAX."
:long-description ""
:depends-on ("mgl-pax/full" "dref-test" "try")
:defsystem-depends-on ("mgl-pax.asdf")
:around-compile "mgl-pax.asdf:compile-pax"
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "test-defs")
(:file "test-util")
(:file "test-navigate")
(:file "test-document")
(:file "test-transcribe")
(:file "test"))))
:perform (asdf:test-op (o s)
(uiop:symbol-call '#:mgl-pax-test '#:test)))
(asdf:defsystem "mgl-pax-test/extension"
:licence "MIT, see COPYING."
:author "Gábor Melis"
:mailto "mega@retes.hu"
:homepage ""
:bug-tracker ""
:source-control ""
:description "Test system for MGL-PAX extensions."
:long-description "Runnable by test/test.sh only."
:depends-on ("mgl-pax" "try")
:defsystem-depends-on ("mgl-pax.asdf")
:around-compile "mgl-pax.asdf:compile-pax"
:components ((:module "test"
:serial t
:components ((:file "test-extension")))))