-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmath-tests.asd
More file actions
25 lines (25 loc) · 1004 Bytes
/
Copy pathmath-tests.asd
File metadata and controls
25 lines (25 loc) · 1004 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
(defsystem "math-tests"
:description "Тестирование систем, входящих в проект Math"
:author "Mykola Matvyeyev <mnasoft@gmail.com>"
:license "GPL-3.0-or-later"
:version "0.0.5"
:depends-on (:math :fiveam)
:perform (test-op (o s)
(uiop:symbol-call :math/tests :run-tests))
:components ((:module "tests"
:serial t
:components ((:file "package")
(:file "all")
(:file "core")
(:file "2d-array")
(:file "matrix")
(:file "list-matr-tests")
(:file "equation")
(:file "ls-gauss")
(:file "ls-gsll")
(:file "ls-rotation")
(:file "coord")
(:file "half-div")
(:file "appr")
;; (:file "run")
))))