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

Add "expect" config option

This commit is contained in:
Clifford Wolf 2017-02-06 16:30:29 +01:00
parent ad4c0f2198
commit c2c273c7c8
5 changed files with 48 additions and 10 deletions

View file

@ -1,6 +1,7 @@
[options]
mode bmc
depth 10
expect fail
[engines]
smtbmc -s boolector

View file

@ -84,5 +84,5 @@ if opt_force:
job = SbyJob(sbyfile, workdir, early_logmsgs)
job.run()
sys.exit(0 if job.status == "PASS" else 1)
sys.exit(job.retcode)

View file

@ -128,7 +128,9 @@ class SbyJob:
self.models = dict()
self.workdir = workdir
self.status = None
self.status = "UNKNOWN"
self.expect = ["PASS"]
self.tasks_running = []
self.tasks_all = []
@ -327,9 +329,35 @@ class SbyJob:
for task in self.tasks_running:
task.terminate()
def update_status(self, new_status):
assert new_status in ["PASS", "FAIL", "UNKNOWN", "ERROR"]
if new_status == "UNKNOWN":
return
if self.status == "ERROR":
return
if new_status == "PASS":
assert self.status != "FAIL"
self.status = "PASS"
elif new_status == "FAIL":
assert self.status != "PASS"
self.status = "FAIL"
elif new_status == "ERROR":
self.status = "ERROR"
else:
assert 0
def run(self):
assert "mode" in self.options
if "expect" in self.options:
self.expect = self.options["expect"].upper().split(",")
self.copy_src()
if self.options["mode"] == "bmc":
@ -363,8 +391,17 @@ class SbyJob:
self.log("summary: %s" % line)
self.log("DONE (%s)" % self.status)
assert self.status in ["PASS", "FAIL", "UNKNOWN", "ERROR"]
if self.status in self.expect:
self.retcode = 0
else:
if self.status == "PASS": self.retcode = 1
if self.status == "FAIL": self.retcode = 2
if self.status == "ERROR": self.retcode = 3
if self.status == "UNKNOWN": self.retcode = 4
with open("%s/%s" % (self.workdir, self.status), "w") as f:
for line in self.summary:
print(line, file=f)

View file

@ -75,13 +75,13 @@ def run(mode, job, engine_idx, engine):
assert retcode == 0
assert task_status is not None
job.status = task_status
job.update_status(task_status)
job.log("engine_%d: Status returned by engine: %s" % (engine_idx, task_status))
job.summary.append("engine_%d (%s) returned %s" % (engine_idx, " ".join(engine), job.status))
job.summary.append("engine_%d (%s) returned %s" % (engine_idx, " ".join(engine), task_status))
job.terminate()
if job.status == "FAIL":
if task_status == "FAIL":
task2 = SbyTask(job, "engine_%d" % engine_idx, job.model("smt2"),
("cd %s; yosys-smtbmc --noprogress --dump-vcd engine_%d/trace.vcd --dump-vlogtb engine_%d/trace_tb.v " +
"--dump-smtc engine_%d/trace.smtc --aig model/design_aiger.aim:engine_%d/trace.aiw --aig-noheader model/design_smt2.smt2") %

View file

@ -90,11 +90,11 @@ def run(mode, job, engine_idx, engine):
assert task_status is not None
if mode == "bmc" or mode == "cover":
job.status = task_status
job.update_status(task_status)
job.log("engine_%d: Status returned by engine: %s" % (engine_idx, task_status))
job.summary.append("engine_%d (%s) returned %s" % (engine_idx, " ".join(engine), job.status))
job.summary.append("engine_%d (%s) returned %s" % (engine_idx, " ".join(engine), task_status))
if job.status == "FAIL" and mode != "cover":
if task_status == "FAIL" and mode != "cover":
job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx))
job.terminate()
@ -111,7 +111,7 @@ def run(mode, job, engine_idx, engine):
job.basecase_pass = True
else:
job.status = task_status
job.update_status(task_status)
job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx))
job.terminate()
@ -126,7 +126,7 @@ def run(mode, job, engine_idx, engine):
assert False
if job.basecase_pass and job.induction_pass:
job.status = "PASS"
job.update_status("PASS")
job.summary.append("successful proof by k-induction.")
job.terminate()