From: Jannis Harder Date: Wed, 30 Mar 2022 11:35:57 +0000 (+0200) Subject: Prefer the first tracefile for each failing assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b725bfed0c986777f239f362596b096c8cc05326;p=SymbiYosys.git Prefer the first tracefile for each failing assertion --- diff --git a/sbysrc/sby_engine_smtbmc.py b/sbysrc/sby_engine_smtbmc.py index 18cfb09..4ec365d 100644 --- a/sbysrc/sby_engine_smtbmc.py +++ b/sbysrc/sby_engine_smtbmc.py @@ -210,7 +210,8 @@ def run(mode, task, engine_idx, engine): match = re.match(r"^## [0-9: ]+ Writing trace to VCD file: (\S+)", line) if match and last_prop: for p in last_prop: - p.tracefile = match[1] + if not p.tracefile: + p.tracefile = match[1] last_prop = [] return line diff --git a/tests/keepgoing_multi_step.check.py b/tests/keepgoing_multi_step.check.py index 0b7d49e..78c713f 100644 --- a/tests/keepgoing_multi_step.check.py +++ b/tests/keepgoing_multi_step.check.py @@ -25,3 +25,5 @@ for task in ["keepgoing_multi_step_bmc", "keepgoing_multi_step_prove"]: assert re.search(r"Assert failed in test: %s \(.*\) \[failed before\]$" % step_3_7, log_per_trace[3], re.M) assert re.search(r"Assert failed in test: %s \(.*\)$" % step_7, log_per_trace[3], re.M) + pattern = f"Property ASSERT in test at {assert_0} failed. Trace file: engine_0/trace0.vcd" + assert re.search(pattern, open(f"{task}/{task}.xml").read())