3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-09-02 01:30:42 +00:00
This commit is contained in:
N. Engelhardt 2025-07-09 07:50:10 +02:00 committed by GitHub
commit 69dc627678
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

25
tests/escapechars.sby Normal file
View file

@ -0,0 +1,25 @@
[options]
mode bmc
depth 1
expect fail
wait on
[engines]
smtbmc yices
smtbmc boolector
btor btormc
abc bmc3
[script]
read -sv escapechars.v
prep -top test
[file escapechars.v]
module test(
input \foo!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~bar
);
always @* begin
assert (\foo!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~bar );
end
endmodule