From e78e110141d5860fdd18f9e7934c4e6159946cee Mon Sep 17 00:00:00 2001 From: Lucas Meneghel Rodrigues Date: Fri, 30 Nov 2012 15:59:27 -0200 Subject: [PATCH] Introduce vm.verify_userspace_crash() In order to capture any qemu crashes, introduce a method that scans qemu output and throws an error if a core dump condition is found. Improve verify_alive() by calling this function, among others, and add a check on two of the most called functions of the framework: vm.wait_for_login() and vm.wait_for_serial_login(). Signed-off-by: Lucas Meneghel Rodrigues --- tests/unattended_install.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unattended_install.py b/tests/unattended_install.py index 328b2f7d..c6e20e13 100644 --- a/tests/unattended_install.py +++ b/tests/unattended_install.py @@ -827,7 +827,6 @@ def run_unattended_install(test, params, env): break else: raise e - vm.verify_kernel_crash() test.verify_background_errors() finish_signal = vm.serial_console.get_output() if (params.get("wait_no_ack", "no") == "no" and -- GitLab