mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-23 13:27:10 -04:00
[dv/uvm/core_ibex] Fix timeout issue in wfi tests
The test loops around waiting for the core to sleep then sending interrupts to wake it. In some cases, the sequence sends an interrupt that isn't enabled. It never gets back to try again with a new interrupt since the test is waiting to see wfi first. This change removes that requirement since it is redundant anyway (have to see wfi to sleep). Signed-off-by: Tom Roberts <tomroberts@lowrisc.org>
This commit is contained in:
parent
8dd21e491f
commit
62aa2bcab8
1 changed files with 0 additions and 1 deletions
|
@ -724,7 +724,6 @@ class core_ibex_irq_wfi_test extends core_ibex_directed_test;
|
|||
|
||||
virtual task check_stimulus();
|
||||
forever begin
|
||||
wait (dut_vif.dut_cb.wfi === 1'b1);
|
||||
wait (dut_vif.dut_cb.core_sleep === 1'b1);
|
||||
send_irq_stimulus();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue