We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e4ea73 commit 88209aeCopy full SHA for 88209ae
regression/verilog/SVA/sequence1.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+sequence1.sv
3
+--bound 20 --numbered-trace
4
+^EXIT=10$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+The trace shown only has one state, but 10 are expected.
regression/verilog/SVA/sequence1.sv
@@ -0,0 +1,14 @@
+module main;
+
+ reg [31:0] x;
+ wire clk;
+ initial x=0;
+ always @(posedge clk)
+ x<=x+1;
10
11
+ // fails, and we want to see a trace 0...9
12
+ initial p0: assert property (##[0:9] x==100);
13
14
+endmodule
0 commit comments