Skip to content

Commit 214fc99

Browse files
authored
Merge pull request #242 from diffblue/posedge_vector
Verilog: Add a KNOWNBUG test for a crash
2 parents 3def3e7 + 054679d commit 214fc99

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
KNOWNBUG
2+
posedge_vector.v
3+
--module main
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
--
7+
^warning: ignoring
8+
--
9+
This yields an invariant violation.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module main(input [7:0] data);
2+
3+
always @(posedge data);
4+
5+
endmodule

0 commit comments

Comments
 (0)