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

Merge pull request #145 from nakengelhardt/fix_junit_tracefile

junit: handle multiple asserts failing with the same trace
This commit is contained in:
N. Engelhardt 2022-03-28 16:32:54 +02:00 committed by GitHub
commit 53abf14514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 5 deletions

View file

@ -155,7 +155,7 @@ def run(mode, task, engine_idx, engine):
task.induction_procs.append(proc)
proc_status = None
last_prop = None
last_prop = []
def output_callback(line):
nonlocal proc_status
@ -187,7 +187,7 @@ def run(mode, task, engine_idx, engine):
cell_name = match[3]
prop = task.design_hierarchy.find_property_by_cellname(cell_name, trans_dict=smt2_trans)
prop.status = "FAIL"
last_prop = prop
last_prop.append(prop)
return line
match = re.match(r"^## [0-9: ]+ Reached cover statement at (\S+) \((\S+)\) in step \d+.", line)
@ -195,13 +195,14 @@ def run(mode, task, engine_idx, engine):
cell_name = match[2]
prop = task.design_hierarchy.find_property_by_cellname(cell_name, trans_dict=smt2_trans)
prop.status = "PASS"
last_prop = prop
last_prop.append(prop)
return line
match = re.match(r"^## [0-9: ]+ Writing trace to VCD file: (\S+)", line)
if match and last_prop:
last_prop.tracefile = match[1]
last_prop = None
for p in last_prop:
p.tracefile = match[1]
last_prop = []
return line
match = re.match(r"^## [0-9: ]+ Unreached cover statement at (\S+) \((\S+)\).", line)

22
tests/2props1trace.sby Normal file
View file

@ -0,0 +1,22 @@
[options]
mode bmc
depth 1
expect fail
[engines]
smtbmc
[script]
read -sv top.sv
prep -top top
[file top.sv]
module top(
input foo,
input bar
);
always @(*) begin
assert (foo);
assert (bar);
end
endmodule