From 8d426a6df0673244ee50a76b17082e86b02c7337 Mon Sep 17 00:00:00 2001 From: Yingshun Cui Date: Tue, 7 Jan 2025 14:26:59 +0800 Subject: [PATCH] guest_os_booting: Extend timeout of vm start up Update the timeout to make the case stable. Signed-off-by: Yingshun Cui --- .../guest_os_booting/boot_order/boot_with_multiple_boot_dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_dev.py b/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_dev.py index 11f879312c..cf5c3f96d9 100644 --- a/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_dev.py +++ b/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_dev.py @@ -92,7 +92,7 @@ def run(test, params, env): vm.wait_for_login(timeout=360).close() test.log.debug("Succeed to boot %s", vm_name) else: - vm.serial_console.read_until_output_matches(check_prompt, timeout=300, + vm.serial_console.read_until_output_matches(check_prompt, timeout=600, internal_timeout=0.5) finally: bkxml.sync()