Skip to content

Commit

Permalink
reduced a bit interrupt long delay scenario as some wfi stress tests …
Browse files Browse the repository at this point in the history
…result in the core just waiting 90% of the simtime (70ms simtime...)
  • Loading branch information
XavierAubert committed Jun 21, 2024
1 parent d9ddf60 commit d1c4cc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ task uvme_cv32e40p_interrupt_noise_c::rand_delay();
//@DVT_LINTER_WAIVER_START "MT20211214_1" disable SVTB.29.1.3.1
short_delay_wgt: repeat($urandom_range( 100, 1)) @(cntxt.interrupt_cntxt.vif.drv_cb);
med_delay_wgt: repeat($urandom_range( 500, 100)) @(cntxt.interrupt_cntxt.vif.drv_cb);
long_delay_wgt: repeat($urandom_range(10_000,5_000)) @(cntxt.interrupt_cntxt.vif.drv_cb);
long_delay_wgt: repeat($urandom_range( 5_000,1_000)) @(cntxt.interrupt_cntxt.vif.drv_cb);
//@DVT_LINTER_WAIVER_END "MT20211214_1"
endcase
endtask : rand_delay
Expand Down

0 comments on commit d1c4cc2

Please sign in to comment.