3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-23 05:15:30 +00:00

fix junit error/failure/skipped count

This commit is contained in:
N. Engelhardt 2022-02-07 19:20:29 +01:00
parent 53eb25fcae
commit 7d3545dc86
3 changed files with 37 additions and 24 deletions

View file

@ -25,7 +25,7 @@ if (rst)
else
count <= count + 1'b1;
cover (count == 0);
cover (count == 4'd11);
cover (count == 0 && !rst);
cover (count == 4'd11 && !rst);
end
endmodule