-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathquilc-tests.asd
More file actions
26 lines (25 loc) · 839 Bytes
/
quilc-tests.asd
File metadata and controls
26 lines (25 loc) · 839 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
;;;; quilc-tests.asd
;;;;
;;;; Author: Eric Peterson
(asdf:defsystem #:quilc-tests
:description "Regression tests for quilc."
:author "Eric Peterson <eric@rigetti.com>"
:license "Apache License 2.0 (See LICENSE.txt)"
:depends-on (#:quilc
#:fiasco
#:uiop
#:alexandria
#:bordeaux-threads ; for RPCQ tests and SPECIAL-BINDINGS-LET*
#:uuid
)
:perform (asdf:test-op (o s)
(uiop:symbol-call ':quilc-tests
'#:run-quilc-tests))
:pathname "app/tests/"
:serial t
:components ((:file "package")
(:file "utils")
(:file "suite")
(:file "faithfulness-tests")
(:file "rpcq-tests")
(:file "misc-tests")))