Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions regression/verilog/expressions/bitwise_and1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
bitwise_and1.sv
--bound 0
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
--
This gives wrong answers.
8 changes: 8 additions & 0 deletions regression/verilog/expressions/bitwise_and1.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module main;

initial assert ((4'b0000 & 4'b01zx) === 4'b0000);
initial assert ((4'b1111 & 4'b01zx) === 4'b01xx);
initial assert ((4'bxxxx & 4'b01zx) === 4'b0xxx);
initial assert ((4'bzzzz & 4'b01zx) === 4'b0xxx);

endmodule
9 changes: 9 additions & 0 deletions regression/verilog/expressions/bitwise_or1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
KNOWNBUG
bitwise_or1.sv
--bound 0
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
--
This gives wrong answers.
8 changes: 8 additions & 0 deletions regression/verilog/expressions/bitwise_or1.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module main;

initial assert ((4'b0000 | 4'b01zx) === 4'b01xx);
initial assert ((4'b1111 | 4'b01zx) === 4'b1111);
initial assert ((4'bxxxx | 4'b01zx) === 4'bx1xx);
initial assert ((4'bzzzz | 4'b01zx) === 4'bx1xx);

endmodule
7 changes: 7 additions & 0 deletions regression/verilog/expressions/bitwise_xor1.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CORE
bitwise_xor1.sv
--bound 0
^EXIT=0$
^SIGNAL=0$
--
^warning: ignoring
8 changes: 8 additions & 0 deletions regression/verilog/expressions/bitwise_xor1.sv
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module main;

initial assert ((4'b0000 ^ 4'b01zx) === 4'b01xx);
initial assert ((4'b1111 ^ 4'b01zx) === 4'b10xx);
initial assert ((4'bxxxx ^ 4'b01zx) === 4'bxxxx);
initial assert ((4'bzzzz ^ 4'b01zx) === 4'bxxxx);

endmodule
Loading