mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-23 11:37:55 +00:00
Disable Verific blackbox checks (different from our preferred approach)
This commit is contained in:
parent
e73d51dbf0
commit
2ae7490adf
4 changed files with 1 additions and 0 deletions
17
tests/verific/blackbox_empty.ys.DISABLED
Normal file
17
tests/verific/blackbox_empty.ys.DISABLED
Normal file
|
@ -0,0 +1,17 @@
|
|||
import -sv <<EOF
|
||||
module TEST_CELL(input clk, input a, input b, output reg c);
|
||||
parameter PATH = "DEFAULT";
|
||||
endmodule
|
||||
EOF
|
||||
|
||||
import -sv <<EOF
|
||||
module top(input clk, input a, input b, output c, output d);
|
||||
TEST_CELL #(.PATH("TEST")) test1(.clk(clk),.a(a),.b(1'b1),.c(c));
|
||||
TEST_CELL #(.PATH("DEFAULT")) test2(.clk(clk),.a(a),.b(1'bx),.c(d));
|
||||
endmodule
|
||||
EOF
|
||||
|
||||
import -import top
|
||||
hierarchy -top top
|
||||
stat
|
||||
select -assert-count 2 t:TEST_CELL
|
Loading…
Add table
Add a link
Reference in a new issue