mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-04 17:31:10 +08:00
17 lines
296 B
Python
17 lines
296 B
Python
# RUN: %python -m artiq.compiler.testbench.jit %s >%t
|
|
# RUN: OutputCheck %s --file-to-check=%t
|
|
# REQUIRES: exceptions
|
|
|
|
def f():
|
|
try:
|
|
1/0
|
|
except ValueError:
|
|
# CHECK-NOT-L: FAIL
|
|
print("FAIL")
|
|
|
|
try:
|
|
f()
|
|
except ZeroDivisionError:
|
|
# CHECK-L: OK
|
|
print("OK")
|