-
Notifications
You must be signed in to change notification settings - Fork 0
/
anatomicl-extrinsic.asd
40 lines (38 loc) · 1.54 KB
/
anatomicl-extrinsic.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
(cl:in-package #:asdf-user)
(defsystem "anatomicl-extrinsic"
:description "Extrinsic interface to Anatomicl."
:license "BSD"
:author ("Robert Strandh"
"Sylvia Harrington"
"Tarn W. Burton")
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Anatomicl"
:bug-tracker "https://github.com/s-expressionists/Anatomicl/issues"
:depends-on ("anatomicl")
:in-order-to ((asdf:test-op (asdf:test-op #:anatomicl-extrinsic/test)))
:components ((:module code
:pathname "code/extrinsic/"
:serial t
:components ((:file "packages")
(:file "interface")))))
(asdf:defsystem "anatomicl-extrinsic/test"
:description "Extrinsic testing interface to Anatomicl."
:license "BSD"
:author ("Robert Strandh"
"Sylvia Harrington"
"Tarn W. Burton")
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Anatomicl"
:bug-tracker "https://github.com/s-expressionists/Anatomicl/issues"
:depends-on ("anatomicl-extrinsic"
"ansi-test-harness")
:perform (asdf:test-op (op c)
(symbol-call :anatomicl-extrinsic/test :test))
:components ((:module code
:pathname "code/extrinsic/test/"
:serial t
:components ((:file "packages")
(:file "ansi-test")
(:static-file "expected-failures.sexp")))))