forked from quil-lang/magicl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagicl-tests.asd
29 lines (28 loc) · 950 Bytes
/
magicl-tests.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
;;;; magicl-tests.asd
;;;;
;;;; Author: Joseph Lin
(asdf:defsystem #:magicl-tests
:license "BSD 3-Clause (See LICENSE.txt)"
:description "Regression tests for MAGICL."
:author "Rigetti Computing"
:depends-on (#:alexandria
#:uiop
#:magicl
#:magicl-examples
#:fiasco
#:trivial-garbage)
:perform (asdf:test-op (o s)
(uiop:symbol-call :magicl-tests
'#:run-magicl-tests))
:pathname "tests/"
:serial t
:components ((:file "packages")
(:file "suite")
(:file "constants")
(:file "util-tests")
(:file "allocation-tests")
(:file "abstract-tensor-tests")
(:file "specialization-tests")
(:file "constructor-tests")
(:file "matrix-tests")
(:file "high-level-tests")))