Fix unstable --vltmt test
Signed-off-by: Artur Bieniek <abieniek@antmicro.com>
This commit is contained in:
parent
5712f9b614
commit
2f01775ba9
|
|
@ -9,8 +9,7 @@
|
|||
|
||||
import vltest_bootstrap
|
||||
|
||||
# Issue #7781 unstable with --vltmt
|
||||
test.scenarios('simulator_st')
|
||||
test.scenarios('simulator')
|
||||
|
||||
test.compile(timing_loop=True, verilator_flags2=['--assert', '--timing'])
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ module t (
|
|||
assert property (@(posedge clk) disable iff (cyc < 5) 1 ##1 0)
|
||||
else post_temporal_fail++;
|
||||
|
||||
always @(posedge clk) begin
|
||||
always @(negedge clk) begin
|
||||
cyc <= cyc + 1;
|
||||
rst <= cyc < 4;
|
||||
x <= cyc < 4;
|
||||
|
|
|
|||
Loading…
Reference in New Issue