From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH] KVM test: tests.cfg.sample: add params to qemu command line properly Date: Fri, 10 Sep 2010 13:08:18 -0300 Message-ID: <1284134898-17418-1-git-send-email-lmr@redhat.com> Cc: kvm@vger.kernel.org, kwolf@redhat.com, lcapitulino@redhat.com, Lucas Meneghel Rodrigues To: autotest@test.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:15966 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754688Ab0IJQIY (ORCPT ); Fri, 10 Sep 2010 12:08:24 -0400 Sender: kvm-owner@vger.kernel.org List-ID: There's a small bug on the qemu sample testset for KVM autotest: We need to append -enable-kvm as extra params to the qemu command line, not replace all extra params. Small bug, renders the unattended install unusable for folks trying qemu instead of qemu-kvm. Thanks to Kevin Wolf for having found this problem. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/tests.cfg.sample | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/client/tests/kvm/tests.cfg.sample b/client/tests/kvm/tests.cfg.sample index 12e1d7a..ce3e307 100644 --- a/client/tests/kvm/tests.cfg.sample +++ b/client/tests/kvm/tests.cfg.sample @@ -58,7 +58,7 @@ variants: only Fedora.13.64 only unattended_install.cdrom boot shutdown # qemu needs -enable-kvm on the cmdline - extra_params = ' -enable-kvm' + extra_params += ' -enable-kvm' # Runs qemu-kvm, f13 64 bit guest OS, install, boot, shutdown - @qemu_kvm_f13_quick: -- 1.7.2.2