3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-07-24 15:18:58 +00:00

Add aiger engine

This commit is contained in:
Clifford Wolf 2017-02-19 23:53:01 +01:00
parent 404f8de16d
commit b5be4a5759
9 changed files with 153 additions and 15 deletions

View file

@ -67,6 +67,8 @@ def run(mode, job, engine_idx, engine):
match = re.match(r"^Property proved.", line)
if match: task_status = "PASS"
return line
def exit_callback(retcode):
assert retcode == 0
assert task_status is not None
@ -95,6 +97,8 @@ def run(mode, job, engine_idx, engine):
match = re.match(r"^## [0-9: ]+ Status: PASSED", line)
if match: task2_status = "PASS"
return line
def exit_callback2(line):
assert task2_status is not None
assert task2_status == "FAIL"