3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-11-03 22:29:12 +00:00
sby/tests/unsorted/no_props.sby
Krystine Sherwin d8e276983e
no_props.sby: Add btor_cover placeholder
The test infrastructure doesn't like when the `cover` tag is used but there is no task that uses it (because it thinks it is a task rather than a tag).
2025-09-30 11:22:13 +13:00

36 lines
657 B
Text

[tasks]
abc prove
abc_keepgoing prove
btor_cover cover
# "Error: Does not work for combinational networks."
abc_bmc3 bmc error
# "Error: Only works for sequential networks."
abc_sim3 bmc error
# "Property index 0 is greater than the number of properties in file model/design_btor_single.btor (0)"
btor_pono bmc error
[options]
prove: mode prove
bmc: mode bmc
cover: mode cover
error: expect ERROR
[engines]
abc: abc pdr
abc_keepgoing: abc --keep-going pdr
btor_pono: btor pono
btor_cover: btor btormc
abc_bmc3: abc bmc3
abc_sim3: abc sim3
[script]
read -sv test.sv
prep -top top
[file test.sv]
module top(input i, output o);
assign o = ~i;
endmodule