Skip to content

Commit 58ce333

Browse files
committed
Add native CCNOT compilation test.
This is to help ensure building chip specs and the bare minimum compilation of higher order objects keeps working.
1 parent faf897e commit 58ce333

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/compilation-tests.lisp

+7
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,13 @@ CNOT 0 2"))
195195
;; test on quality of compilation, and not on correctness.
196196
(is (>= 6 (length 2q-code)))))
197197

198+
(deftest test-native-ccnot-compilation ()
199+
"Test that we can compile a trivial program on a chip specification with a native CCNOT gate."
200+
(let* ((chip (quil::build-ccnot-chip))
201+
(ccnot-prog (parse "CCNOT 0 1 2")))
202+
(not-signals error
203+
(compiler-hook ccnot-prog chip))))
204+
198205
(deftest test-cswap-compiles-with-qs ()
199206
"Test that CSWAP compiles with QS-COMPILER. (Don't test the output's validity.)"
200207
(let ((result (quil::qs-compiler (quil::build-gate "CSWAP" () 0 1 2))))

0 commit comments

Comments
 (0)