Skip to content

Commit

Permalink
Merge pull request #3978 from jix/fix-sva-test
Browse files Browse the repository at this point in the history
Fix sva_value_change_changed test for updated verific
  • Loading branch information
mmicko authored Oct 3, 2023
2 parents a6247cb + c174597 commit 493685b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/sva/sva_value_change_changed.sv
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ module top (
$changed(b)
);

wire x = 'x;

`ifndef FAIL
assume property (
b !== 'x ##1 $changed(b)
b !== x ##1 $changed(b)
);
`endif

Expand Down

0 comments on commit 493685b

Please sign in to comment.