mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #3978 from jix/fix-sva-test
Fix sva_value_change_changed test for updated verific
This commit is contained in:
commit
493685b7d2
tests/sva
|
@ -8,9 +8,11 @@ module top (
|
||||||
$changed(b)
|
$changed(b)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
wire x = 'x;
|
||||||
|
|
||||||
`ifndef FAIL
|
`ifndef FAIL
|
||||||
assume property (
|
assume property (
|
||||||
b !== 'x ##1 $changed(b)
|
b !== x ##1 $changed(b)
|
||||||
);
|
);
|
||||||
`endif
|
`endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue