From mboxrd@z Thu Jan 1 00:00:00 1970 From: Amos Kong Subject: [PATCH] KVM-test: Add new drive option 'werror' Date: Tue, 19 Jan 2010 22:18:04 +0800 Message-ID: <20100119141804.GA5173@debian> Reply-To: Amos Kong Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org To: autotest@test.kernel.org Return-path: Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: autotest-bounces@test.kernel.org Errors-To: autotest-bounces@test.kernel.org List-Id: kvm.vger.kernel.org Add new drive option 'werror' of qemu-kvm command for KVM-autotest workframe. It can be configured by 'drive_werror' variable in configure file. Signed-off-by: Amos Kong --- client/tests/kvm/kvm_vm.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py index 7c55ba0..8985f25 100755 --- a/client/tests/kvm/kvm_vm.py +++ b/client/tests/kvm/kvm_vm.py @@ -231,6 +231,8 @@ class VM: qemu_cmd += ",if=%s" % image_params.get("drive_format") if image_params.get("drive_cache"): qemu_cmd += ",cache=%s" % image_params.get("drive_cache") + if image_params.get("drive_werror"): + qemu_cmd += ",werror=%s" % image_params.get("drive_werror") if image_params.get("drive_serial"): qemu_cmd += ",serial=%s" % image_params.get("drive_serial") if image_params.get("image_snapshot") == "yes": -- 1.5.6.5