mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 09:55:20 +00:00
Add regression tests for new handling of comments in constants
This commit is contained in:
parent
5e94bf0291
commit
dd562f29e7
8
tests/various/bug1745.ys
Normal file
8
tests/various/bug1745.ys
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
logger -expect error "syntax error, unexpected TOK_CONSTVAL" 1
|
||||||
|
read_verilog <<EOT
|
||||||
|
module inverter(input a, output y);
|
||||||
|
|
||||||
|
assign y = (a == 1'b0? 1'b1 : 1'b0);
|
||||||
|
|
||||||
|
endmodule // inverter
|
||||||
|
EOT
|
16
tests/various/constcomment.ys
Normal file
16
tests/various/constcomment.ys
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
read_verilog <<EOT
|
||||||
|
module top1;
|
||||||
|
localparam a = 8 /*foo*/ 'h ab;
|
||||||
|
localparam b = 8 'h /*foo*/ cd;
|
||||||
|
generate
|
||||||
|
if (a != 8'b10101011) $error("a incorrect!");
|
||||||
|
if (b != 8'b11001101) $error("b incorrect!");
|
||||||
|
endgenerate
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
logger -expect error "syntax error, unexpected TOK_BASE" 1
|
||||||
|
read_verilog <<EOT
|
||||||
|
module top2;
|
||||||
|
localparam a = 12'h4 /*foo*/'b0;
|
||||||
|
endmodule
|
||||||
|
EOT
|
Loading…
Reference in a new issue