-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathportable-condition-system.asd
68 lines (66 loc) · 2.38 KB
/
portable-condition-system.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
;;;; portable-condition-system.asd
(asdf:defsystem #:portable-condition-system
:description "A portable condition system for Common Lisp"
:author "Kent M. Pitman <[email protected]>"
:maintainer "Michał \"phoe\" Herda <[email protected]>"
:license "CC0"
:version "1.1.0"
:serial t
:pathname "src"
:depends-on (#:alexandria
#:split-sequence)
:components ((:file "package")
(:file "conditions")
(:file "condition-hierarchy")
(:file "coerce-to-condition")
(:file "restarts")
(:file "assertions")
(:file "signaling")
(:file "handlers")
(:file "debugger"))
:in-order-to ((test-op (load-op #:portable-condition-system/test)))
:perform
(test-op (o c)
(symbol-call "PORTABLE-CONDITION-SYSTEM/TEST" "RUN")))
(asdf:defsystem #:portable-condition-system/test
:description "Tests for Portable Condition System"
:author "Michał \"phoe\" Herda <[email protected]>"
:license "MIT"
:version "1.0.0"
:serial t
:pathname "t"
:depends-on (#:portable-condition-system)
:components ((:file "package")
(:file "1am")
(:file "debugger")
(:file "ansi-test-data")
(:file "ansi-test-support")
(:module "ansi-test"
:components
((:file "condition")
(:file "cell-error-name")
(:file "assert")
(:file "error")
(:file "cerror")
(:file "check-type")
(:file "warn")
(:file "invoke-debugger")
(:file "handler-bind")
(:file "handler-case")
(:file "ignore-errors")
(:file "define-condition")
(:file "compute-restarts")
(:file "restart-bind")
(:file "restart-case")
(:file "with-condition-restarts")
(:file "with-simple-restart")
(:file "abort")
(:file "muffle-warning")
(:file "continue")
(:file "store-value")
(:file "use-value")
(:file "make-condition")
(:file "ecase")
(:file "etypecase")
(:file "ccase")
(:file "ctypecase")))))