-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbit-smasher-test.asd
31 lines (26 loc) · 1.06 KB
/
bit-smasher-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
;;;; file: bit-smasher-test.asd
;;;; Copyright (c) 2014--2022, "the Phoeron" Colin J.E. Lupton <[email protected]>
;;;; See LICENSE for additional information.
(in-package :cl-user)
(defpackage bit-smasher/test-asdf
(:use cl asdf uiop))
(in-package :bit-smasher/test-asdf)
(defsystem bit-smasher-test
:description "The test code for BIT-SMASHER."
:author "\"the Phoeron\" Colin J.E. Lupton"
:mailto "[email protected]"
:homepage "https://thephoeron.common-lisp.dev/bit-smasher/"
:source-control (:git "https://gitlab.common-lisp.net/thephoeron/bit-smasher/")
:bug-tracker "https://gitlab.common-lisp.net/thephoeron/bit-smasher/-/issues/"
:version (:read-file-form "VERSION")
:license "MIT"
:depends-on (bit-smasher
prove)
:serial t
:components ((:module "t"
:components
((:test-file "bit-smasher"))))
:defsystem-depends-on (prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))