-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-sxml.asd
29 lines (27 loc) · 1.16 KB
/
cl-sxml.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
;;;; cl-sxml.asd
;;;; Copyright (C) 2016 by Robert A. Uhl
(asdf:defsystem #:cl-sxml
:description "SXML parsing for Common Lisp"
:author "Bob Uhl <[email protected]>"
:license "GNU General Public License"
:serial t
:depends-on (#:cxml)
:in-order-to ((test-op (test-op #:cl-sxml-test)))
:components ((:file "package")
(:file "cl-sxml")))
(defsystem #:cl-sxml-test
:depends-on (#:cl-sxml #:fiveam #:asdf #:uiop #:flexi-streams
#+(or lispworks clisp) #:closure-common)
:serial t
:components ((:file "package")
(:file "test"))
:perform (test-op (o s)
(let ((results
(uiop:symbol-call '#:fiveam
'#:run
(uiop:find-symbol* '#:cl-sxml
'#:cl-sxml-test))))
(unless (uiop:symbol-call '#:fiveam '#:results-status
results)
(uiop:symbol-call :fiveam '#:explain! results)
(warn "tests failed")))))