From 3cecbf822aeb3e42bb9f29cd9dc610f5aae9992e Mon Sep 17 00:00:00 2001 From: Yingshun Cui Date: Wed, 18 Dec 2024 10:53:53 +0800 Subject: [PATCH] guest_os_booting: Extend timeout Extend timeout of checking vm boot up to make the script more stable Signed-off-by: Yingshun Cui --- .../boot_order/boot_with_multiple_boot_order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_order.py b/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_order.py index b3469f6bdd..8eee55e9e1 100644 --- a/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_order.py +++ b/libvirt/tests/src/guest_os_booting/boot_order/boot_with_multiple_boot_order.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()