From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tp7IG-0007oL-Or for qemu-devel@nongnu.org; Sat, 29 Dec 2012 20:02:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tp7IE-0007Qp-PL for qemu-devel@nongnu.org; Sat, 29 Dec 2012 20:02:24 -0500 Received: from mx1.redhat.com ([209.132.183.28]:43733) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tp7IE-0007QT-Il for qemu-devel@nongnu.org; Sat, 29 Dec 2012 20:02:22 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBU12KY1000383 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 29 Dec 2012 20:02:20 -0500 From: Amos Kong Date: Sun, 30 Dec 2012 09:02:08 +0800 Message-Id: <1356829329-30082-1-git-send-email-akong@redhat.com> Subject: [Qemu-devel] [Autotest PATCH 1/2] virt run: fix typo in help message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: autotest-kernel@redhat.com Cc: lmr@redhat.com, Amos Kong , qemu-devel@nongnu.org, virt-test-devel@redhat.com type 'kvm' already been changed to 'qemu' Signed-off-by: Amos Kong --- run | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run b/run index 97dcdad..aac332a 100755 --- a/run +++ b/run @@ -145,7 +145,7 @@ class VirtTestRunParser(optparse.OptionParser): general.add_option("-v", "--verbose", action="store_true", dest="verbose", help="Exhibit debug messages") general.add_option("-t", "--type", action="store", dest="type", - help="Choose test type (kvm, libvirt, v2v)") + help="Choose test type (qemu, libvirt, v2v)") general.add_option("-c", "--config", action="store", dest="config", help="Explicitly choose a cartesian config") general.add_option("-r", "--restore-image", action="store_true", @@ -174,7 +174,7 @@ class VirtTestRunParser(optparse.OptionParser): "%default")) self.add_option_group(general) - qemu = optparse.OptionGroup(self, 'Options specific to the kvm test') + qemu = optparse.OptionGroup(self, 'Options specific to the qemu test') qemu.add_option("--qemu-bin", action="store", dest="qemu", help=("Path to a custom qemu binary to be tested. " "Default path: %s" % qemu_bin_path)) -- 1.7.1