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

Fixed "counterexample trace:" log message for things like warmup failed

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-08-21 14:00:30 +02:00
parent 2fef25f93d
commit f2697c23c0
3 changed files with 8 additions and 4 deletions

View file

@ -109,6 +109,7 @@ def run(mode, job, engine_idx, engine):
assert task2_status is not None assert task2_status is not None
assert task2_status == "FAIL" assert task2_status == "FAIL"
if os.path.exists("%s/engine_%d/trace.vcd" % (job.workdir, engine_idx)):
job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx)) job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx))
task2.output_callback = output_callback2 task2.output_callback = output_callback2

View file

@ -128,6 +128,7 @@ def run(mode, job, engine_idx, engine):
else: else:
assert task2_status == "FAIL" assert task2_status == "FAIL"
if os.path.exists("%s/engine_%d/trace.vcd" % (job.workdir, engine_idx)):
job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx)) job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx))
task2.output_callback = output_callback2 task2.output_callback = output_callback2

View file

@ -155,6 +155,7 @@ def run(mode, job, engine_idx, engine):
job.summary.append("engine_%d (%s) returned %s" % (engine_idx, " ".join(engine), task_status)) job.summary.append("engine_%d (%s) returned %s" % (engine_idx, " ".join(engine), task_status))
if task_status == "FAIL" and mode != "cover": if task_status == "FAIL" and mode != "cover":
if os.path.exists("%s/engine_%d/trace.vcd" % (job.workdir, engine_idx)):
job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx)) job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx))
job.terminate() job.terminate()
@ -172,6 +173,7 @@ def run(mode, job, engine_idx, engine):
else: else:
job.update_status(task_status) job.update_status(task_status)
if os.path.exists("%s/engine_%d/trace.vcd" % (job.workdir, engine_idx)):
job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx)) job.summary.append("counterexample trace: %s/engine_%d/trace.vcd" % (job.workdir, engine_idx))
job.terminate() job.terminate()