-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcl-permutation-tests.asd
More file actions
26 lines (25 loc) · 935 Bytes
/
cl-permutation-tests.asd
File metadata and controls
26 lines (25 loc) · 935 Bytes
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
;;;; cl-permutation-tests.asd
;;;;
;;;; Copyright (c) 2014-2019 Robert Smith
(asdf:defsystem #:cl-permutation-tests
:description "Regression tests for the library CL-PERMUTATION."
:author "Robert Smith <robert@stylewarning.com>"
:license "BSD 3-clause (See LICENSE)"
:depends-on (#:cl-permutation
#:cl-permutation-examples
#:fiasco)
:perform (asdf:test-op (o s)
(uiop:symbol-call :cl-permutation-tests
'#:run-the-tests))
:pathname "tests/"
:serial t
:components ((:file "package")
(:file "suite")
(:file "permutation")
(:file "straight-line-program")
(:file "permutation-group")
(:file "do-group-elements")
(:file "homomorphism")
(:file "orbit")
(:file "block")
(:file "free-group")))