mirror of https://github.com/YosysHQ/yosys.git
Expand test with `hierarchy' without -auto-top
This commit is contained in:
parent
8124716830
commit
0ca0706630
|
@ -13,8 +13,15 @@ module sub(input i, output o);
|
||||||
assign o = ~i;
|
assign o = ~i;
|
||||||
endmodule
|
endmodule
|
||||||
EOT
|
EOT
|
||||||
|
design -save read
|
||||||
|
|
||||||
hierarchy -auto-top
|
hierarchy -auto-top
|
||||||
select -assert-any top
|
select -assert-any top
|
||||||
select -assert-any sub
|
select -assert-any sub
|
||||||
select -assert-none foo
|
select -assert-none foo
|
||||||
|
|
||||||
|
design -load read
|
||||||
|
hierarchy
|
||||||
|
select -assert-any top
|
||||||
|
select -assert-any sub
|
||||||
|
select -assert-none foo
|
||||||
|
|
Loading…
Reference in New Issue