diff options
author | Chris Rauer <crauer@google.com> | 2023-09-29 00:08:31 +0000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-10-12 14:11:44 +0200 |
commit | d0353b6e7b3f9ba6132f0fa9b3605e4d4275af0c (patch) | |
tree | b725a361e21f727f0bedb811960e4d5e6b738880 /tests | |
parent | e9a54265f533f4df957ee9ced3304df8c3ef2bea (diff) |
tests/qtest: Fix npcm7xx_timer-test.c flaky test
npcm7xx_timer-test occasionally fails due to the state of the timers
from the previous test iteration. Advancing the clock step after the
reset resolves this issue.
Fixes: https://gitlab.com/qemu-project/qemu/-/issues/1897
Signed-off-by: Chris Rauer <crauer@google.com>
Message-ID: <20230929000831.691559-1-crauer@google.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/npcm7xx_timer-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qtest/npcm7xx_timer-test.c b/tests/qtest/npcm7xx_timer-test.c index 43711049ca..58f58c2f71 100644 --- a/tests/qtest/npcm7xx_timer-test.c +++ b/tests/qtest/npcm7xx_timer-test.c @@ -465,6 +465,7 @@ static void test_periodic_interrupt(gconstpointer test_data) int i; tim_reset(td); + clock_step_next(); tim_write_ticr(td, count); tim_write_tcsr(td, CEN | IE | MODE_PERIODIC | PRESCALE(ps)); |