3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-11-03 14:27:53 +00:00
sby/tests/unsorted/no_props.sby
Krystine Sherwin c06d8682cd
Fix abc crash when aiger_props is empty
Includes test reproducer from #338, modified to also test `abc --keep-going pdr`.
2025-09-30 10:26:36 +13:00

21 lines
223 B
Text

[tasks]
abc
abc_keepgoing
[options]
mode prove
[engines]
abc: abc pdr
abc_keepgoing: abc --keep-going pdr
[script]
read -sv test.sv
prep -top top
[file test.sv]
module top(input i, output o);
assign o = ~i;
endmodule