diff mbox

[Autotest,1/2] virt run: fix typo in help message

Message ID 1356829329-30082-1-git-send-email-akong@redhat.com
State New
Headers show

Commit Message

Amos Kong Dec. 30, 2012, 1:02 a.m. UTC
type 'kvm' already been changed to 'qemu'

Signed-off-by: Amos Kong <akong@redhat.com>
---
 run |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Comments

Lucas Meneghel Rodrigues Dec. 31, 2012, 7:52 p.m. UTC | #1
Ok, this looks good, applied, thanks!

On Sat, Dec 29, 2012 at 11:02 PM, Amos Kong <akong@redhat.com> wrote:
> type 'kvm' already been changed to 'qemu'
>
> Signed-off-by: Amos Kong <akong@redhat.com>
> ---
>  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
>
> _______________________________________________
> Virt-test-devel mailing list
> Virt-test-devel@redhat.com
> https://www.redhat.com/mailman/listinfo/virt-test-devel
diff mbox

Patch

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))