mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 00:55:32 +00:00
chformal: Test -coverprecond and reuse the src attribute
This commit is contained in:
parent
c659bd1878
commit
e39c422734
2 changed files with 27 additions and 2 deletions
25
tests/various/chformal_coverprecond.ys
Normal file
25
tests/various/chformal_coverprecond.ys
Normal file
|
@ -0,0 +1,25 @@
|
|||
read_verilog -formal <<EOT
|
||||
module top(input a, b, c, d);
|
||||
|
||||
always @* begin
|
||||
if (a) assert (b == c);
|
||||
if (!a) assert (b != c);
|
||||
if (b) assume (c);
|
||||
if (c) cover (d);
|
||||
end
|
||||
|
||||
endmodule
|
||||
EOT
|
||||
|
||||
prep -top top
|
||||
|
||||
select -assert-count 1 t:$cover
|
||||
|
||||
chformal -cover -coverprecond
|
||||
select -assert-count 2 t:$cover
|
||||
|
||||
chformal -assert -coverprecond
|
||||
select -assert-count 4 t:$cover
|
||||
|
||||
chformal -assume -coverprecond
|
||||
select -assert-count 5 t:$cover
|
Loading…
Add table
Add a link
Reference in a new issue