Skip to content

Commit dab99e3

Browse files
committed
KNOWNBUG test for SVA sequence concatenation
This adds a KNOWNBUG test for the SVA sequence concatenation operator.
1 parent e186da3 commit dab99e3

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
KNOWNBUG
2+
sequence4.sv
3+
--bound 10
4+
^EXIT=10$
5+
^SIGNAL=0$
6+
--
7+
^warning: ignoring
8+
--
9+
sequence concatenation is not supported by the BMC engine
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module main;
2+
3+
reg [31:0] x;
4+
wire clk;
5+
6+
initial x=0;
7+
8+
always @(posedge clk)
9+
x<=x+1;
10+
11+
// sequence concatenation
12+
initial p0: assert property (x == 0 ##1 x == 1 ##1 x == 2);
13+
14+
endmodule

0 commit comments

Comments
 (0)