Skip to content

Commit 8b73075

Browse files
committed
add testcase with escaped identifier using all allowed non-alphanumerical characters
1 parent 41cd8e5 commit 8b73075

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

tests/escapechars.sby

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[options]
2+
mode bmc
3+
depth 1
4+
expect fail
5+
wait on
6+
7+
[engines]
8+
smtbmc yices
9+
smtbmc boolector
10+
btor btormc
11+
abc bmc3
12+
13+
14+
[script]
15+
read -sv escapechars.v
16+
prep -top test
17+
18+
[file escapechars.v]
19+
module test(
20+
input \foo!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~bar
21+
);
22+
always @* begin
23+
assert (\foo!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~bar );
24+
end
25+
endmodule

0 commit comments

Comments
 (0)