-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdref-test.asd
More file actions
39 lines (36 loc) · 1.29 KB
/
dref-test.asd
File metadata and controls
39 lines (36 loc) · 1.29 KB
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
;;;; -*- mode: Lisp -*-
;;; This is in a separate .asd file to help OS-level packaging by
;;; making the dependency graph of .asd files (as opposed to just ASDF
;;; systems) acyclic. See https://github.com/melisgl/try/issues/5.
(asdf:defsystem "dref-test"
:licence "MIT, see COPYING."
:author "Gábor Melis"
:mailto "mega@retes.hu"
:homepage ""
:bug-tracker ""
:source-control ""
:description "Test system for DREF."
:long-description ""
:depends-on ("dref/full" "mgl-pax/full" "try"
(:feature (:not :swank) "swank"))
:components ((:module "test/"
:serial t
:components ((:file "package")
(:file "test-defs")
(:file "test-locate")
(:file "test"))))
:perform (asdf:test-op (o s)
(uiop:symbol-call '#:dref-test '#:test)))
(asdf:defsystem "dref-test/autoload"
:licence "MIT, see COPYING."
:author "Gábor Melis"
:mailto "mega@retes.hu"
:homepage ""
:bug-tracker ""
:source-control ""
:description "Test system for DREF autoload."
:long-description "Runnable by test/test.sh only."
:depends-on ("dref" "try")
:components ((:module "test"
:serial t
:components ((:file "test-autoload")))))