mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 22:34:07 +00:00
Merge pull request #151 from jix/prefer-first-trace
Prefer the first tracefile for each failing assertion
This commit is contained in:
commit
43a79965c3
|
@ -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
|
||||
|
||||
|
|
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue