mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
fix trace summary printing
This commit is contained in:
parent
842e9a121a
commit
6a95ef33c8
|
@ -70,15 +70,14 @@ def run(mode, job, engine_idx, engine):
|
||||||
job.log("engine_{}: Status returned by engine: {}".format(engine_idx, task_status))
|
job.log("engine_{}: Status returned by engine: {}".format(engine_idx, task_status))
|
||||||
job.summary.append("engine_{} ({}) returned {}".format(engine_idx, " ".join(engine), task_status))
|
job.summary.append("engine_{} ({}) returned {}".format(engine_idx, " ".join(engine), task_status))
|
||||||
|
|
||||||
common_state.produced_traces.sort()
|
|
||||||
if len(common_state.produced_traces) == 0:
|
if len(common_state.produced_traces) == 0:
|
||||||
job.log("engine_{}: Engine did not produce a counter example.".format(engine_idx))
|
job.log("engine_{}: Engine did not produce a counter example.".format(engine_idx))
|
||||||
elif len(common_state.produced_traces) < common_state.print_traces_max:
|
elif len(common_state.produced_traces) <= common_state.print_traces_max:
|
||||||
job.summary.extend(common_state.produced_traces)
|
job.summary.extend(common_state.produced_traces)
|
||||||
else:
|
else:
|
||||||
job.summary.extend(common_state.produced_traces[:common_state.print_traces_max])
|
job.summary.extend(common_state.produced_traces[:common_state.print_traces_max])
|
||||||
excess_traces = len(common_state.produced_traces) - common_state.print_traces_max
|
excess_traces = len(common_state.produced_traces) - common_state.print_traces_max
|
||||||
job.summary.append("and {} further trace{}".format(excess_traces, "s" if excess_traces > 1 else {}))
|
job.summary.append("and {} further trace{}".format(excess_traces, "s" if excess_traces > 1 else ""))
|
||||||
|
|
||||||
job.terminate()
|
job.terminate()
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,7 @@ def run(mode, job, engine_idx, engine):
|
||||||
while os.path.exists("{}/engine_{}/trace{}.vcd".format(job.workdir, engine_idx, print_traces_max + excess_traces)):
|
while os.path.exists("{}/engine_{}/trace{}.vcd".format(job.workdir, engine_idx, print_traces_max + excess_traces)):
|
||||||
excess_traces += 1
|
excess_traces += 1
|
||||||
if excess_traces > 0:
|
if excess_traces > 0:
|
||||||
job.summary.append("and {} further trace{}".format(excess_traces, "s" if excess_traces > 1 else {}))
|
job.summary.append("and {} further trace{}".format(excess_traces, "s" if excess_traces > 1 else ""))
|
||||||
|
|
||||||
job.terminate()
|
job.terminate()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue