On 01/06/2023 18.31, Daniel P. Berrangé wrote:
The qom-test is periodically hitting the 5 minute timeout when running
on the aarch64 emulator under GitLab CI. Add another 2 minutes headroom
to the timeout to improve reliability.
Signed-off-by: Daniel P. Berrangé <berra...@redhat.com>
---
tests/qtest/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index 6684591fcf..6943bbfdd5 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -2,7 +2,7 @@ slow_qtests = {
'bios-tables-test' : 120,
'migration-test' : 300,
'npcm7xx_pwm-test': 150,
- 'qom-test' : 300,
+ 'qom-test' : 420,
'test-hmp' : 120,
}
Reviewed-by: Thomas Huth <th...@redhat.com>