mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-11 00:13:33 +00:00
add testcase exposing #137
This commit is contained in:
parent
5a04ac3fcc
commit
ad07ea0e85
24
tests/multi_assert.sby
Normal file
24
tests/multi_assert.sby
Normal file
|
@ -0,0 +1,24 @@
|
|||
[tasks]
|
||||
btormc
|
||||
pono
|
||||
|
||||
[options]
|
||||
mode bmc
|
||||
depth 5
|
||||
expect fail
|
||||
|
||||
[engines]
|
||||
btormc: btor btormc
|
||||
pono: btor pono
|
||||
|
||||
[script]
|
||||
read_verilog -sv multi_assert.v
|
||||
prep -top test
|
||||
|
||||
[file multi_assert.v]
|
||||
module test();
|
||||
always @* begin
|
||||
assert (1);
|
||||
assert (0);
|
||||
end
|
||||
endmodule
|
Loading…
Reference in a new issue