2026-01-19 17:56:14 +01:00
|
|
|
# On Linux, with a spawned abc, this message is the error
|
|
|
|
|
# otherwise the error is the failure to load the output.blif
|
2026-01-28 00:03:10 +01:00
|
|
|
logger -expect log "ABC: Error: This command can only be applied to an AIG" 2
|
2026-01-19 17:56:14 +01:00
|
|
|
logger -expect error "ABC" 1
|
2026-01-07 23:46:33 +01:00
|
|
|
read_verilog << EOT
|
|
|
|
|
module fuzz_mwoqk (input i0, output o0);
|
|
|
|
|
assign o0 = i0 ^ 1;
|
|
|
|
|
endmodule
|
|
|
|
|
EOT
|
|
|
|
|
synth
|
2026-01-27 23:01:38 +01:00
|
|
|
abc -max_threads 0 -script +resub,-K,8;
|