3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Add "Unexpected response" handling to smtbmc engine

Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
Claire Wolf 2020-07-20 19:42:10 +02:00
parent 42d5255231
commit 0d98201dc7
2 changed files with 6 additions and 2 deletions

View file

@ -6,7 +6,7 @@ primes_pass
[options]
mode cover
depth 1
primes_fail: expect fail
primes_fail: expect fail,error
[engines]
smtbmc --dumpsmt2 --progress --stbv z3

View file

@ -37,7 +37,6 @@ def run(mode, job, engine_idx, engine):
"nopresat", "unroll", "nounroll", "dumpsmt2", "progress", "basecase", "induction", "seed="])
for o, a in opts:
print(o, a)
if o == "--nomem":
nomem_opt = True
elif o == "--syn":
@ -169,6 +168,11 @@ def run(mode, job, engine_idx, engine):
task_status = "ERROR"
return line
match = re.match(r"^## [0-9: ]+ Unexpected response from solver:", line)
if match:
task_status = "ERROR"
return line
return line
def exit_callback(retcode):