From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH] KVM test: iofuzz: Fix exception formatting bug Date: Sun, 10 Apr 2011 17:44:11 -0300 Message-ID: <1302468251-5914-1-git-send-email-lmr@redhat.com> Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues To: autotest@test.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:3161 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754414Ab1DJUoQ (ORCPT ); Sun, 10 Apr 2011 16:44:16 -0400 Sender: kvm-owner@vger.kernel.org List-ID: Show both operation and operand when VM quits abnormally. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/tests/iofuzz.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/tests/kvm/tests/iofuzz.py b/client/tests/kvm/tests/iofuzz.py index 7189f91..ea25ba2 100644 --- a/client/tests/kvm/tests/iofuzz.py +++ b/client/tests/kvm/tests/iofuzz.py @@ -84,8 +84,8 @@ def run_iofuzz(test, params, env): logging.debug("Could not re-login, reboot the guest") session = vm.reboot(method="system_reset") else: - raise error.TestFail("VM has quit abnormally during %s", - (op, operand)) + raise error.TestFail("VM has quit abnormally during " + "%s: %s" % (op, operand)) login_timeout = float(params.get("login_timeout", 240)) -- 1.7.4.2