From de51fd563e151203d3d551adb6c08b57e5eda517 Mon Sep 17 00:00:00 2001 From: Feng Yang Date: Thu, 22 Aug 2013 17:20:18 +0800 Subject: [PATCH] qemu.tests.stop_continue call session.cmd() with ignore_all_errors=True. We do not want to fail the case for exception in clean up command. Signed-off-by: Feng Yang --- qemu/tests/stop_continue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/tests/stop_continue.py b/qemu/tests/stop_continue.py index 1004faa4..c18ee95b 100644 --- a/qemu/tests/stop_continue.py +++ b/qemu/tests/stop_continue.py @@ -86,4 +86,4 @@ def run_stop_continue(test, params, env): if clean_op: error.context("Do clean operation: '%s'" % clean_op, logging.info) op_timeout = float(params.get("clean_op_timeout", 60)) - session.cmd(clean_op, timeout=op_timeout) + session.cmd(clean_op, timeout=op_timeout, ignore_all_errors=True) -- GitLab