mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-04 17:31:10 +08:00
862ac1f90d
Other directories in lit-test will host various parts of the test harness.
22 lines
285 B
Python
22 lines
285 B
Python
# RUN: %python -m artiq.compiler.testbench.jit %s
|
|
# RUN: %python %s
|
|
|
|
if True:
|
|
assert True
|
|
|
|
if False:
|
|
assert False
|
|
|
|
if True:
|
|
assert True
|
|
else:
|
|
assert False
|
|
|
|
if False:
|
|
assert False
|
|
else:
|
|
assert True
|
|
|
|
assert (0 if True else 1) == 0
|
|
assert (0 if False else 1) == 1
|