* [PATCH kvm-unit-tests 1/3] x86-run: correct a typo 'qemsystem' -> 'qemusystem'
@ 2013-06-24 6:10 Ren, Yongjie
2013-06-24 8:03 ` Gleb Natapov
0 siblings, 1 reply; 3+ messages in thread
From: Ren, Yongjie @ 2013-06-24 6:10 UTC (permalink / raw)
To: kvm@vger.kernel.org; +Cc: gleb@redhat.com, pbonzini@redhat.com
x86-run: correct a typo 'qemsystem' -> 'qemusystem'
Before this fix, you should always get error info as below when running 'x86-run' script.
"QEMU binary has no support for test device. Exiting."
Signed-off-by: Yongjie Ren <yongjie.ren@intel.com>
---
x86-run | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x86-run b/x86-run
index 2cf1f38..9526a0b 100755
--- a/x86-run
+++ b/x86-run
@@ -8,7 +8,7 @@ then
qemu="${qemukvm}"
else
if
- ${qemsystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null;
+ ${qemusystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null;
then
qemu="${qemusystem}"
else
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH kvm-unit-tests 1/3] x86-run: correct a typo 'qemsystem' -> 'qemusystem'
2013-06-24 6:10 [PATCH kvm-unit-tests 1/3] x86-run: correct a typo 'qemsystem' -> 'qemusystem' Ren, Yongjie
@ 2013-06-24 8:03 ` Gleb Natapov
0 siblings, 0 replies; 3+ messages in thread
From: Gleb Natapov @ 2013-06-24 8:03 UTC (permalink / raw)
To: Ren, Yongjie; +Cc: kvm@vger.kernel.org, pbonzini@redhat.com
On Mon, Jun 24, 2013 at 06:10:59AM +0000, Ren, Yongjie wrote:
> x86-run: correct a typo 'qemsystem' -> 'qemusystem'
> Before this fix, you should always get error info as below when running 'x86-run' script.
> "QEMU binary has no support for test device. Exiting."
>
Patch is whitespace damaged.
> Signed-off-by: Yongjie Ren <yongjie.ren@intel.com>
> ---
> x86-run | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/x86-run b/x86-run
> index 2cf1f38..9526a0b 100755
> --- a/x86-run
> +++ b/x86-run
> @@ -8,7 +8,7 @@ then
> qemu="${qemukvm}"
> else
> if
> - ${qemsystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null;
> + ${qemusystem} -device '?' 2>&1 | fgrep -e \"testdev\" -e \"pc-testdev\" > /dev/null;
While you are at is lets replace fgrep invocation, which is deprecated,
with grep -F.
> then
> qemu="${qemusystem}"
> else
> --
> 1.7.9.5
--
Gleb.
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH kvm-unit-tests 1/3] x86-run: correct a typo 'qemsystem' -> 'qemusystem'
@ 2013-06-24 8:17 Ren, Yongjie
0 siblings, 0 replies; 3+ messages in thread
From: Ren, Yongjie @ 2013-06-24 8:17 UTC (permalink / raw)
To: Gleb Natapov; +Cc: kvm@vger.kernel.org, pbonzini@redhat.com
> -----Original Message-----
> From: kvm-owner@vger.kernel.org [mailto:kvm-owner@vger.kernel.org]
> On Behalf Of Gleb Natapov
> Sent: Monday, June 24, 2013 4:03 PM
> To: Ren, Yongjie
> Cc: kvm@vger.kernel.org; pbonzini@redhat.com
> Subject: Re: [PATCH kvm-unit-tests 1/3] x86-run: correct a typo
> 'qemsystem' -> 'qemusystem'
>
> On Mon, Jun 24, 2013 at 06:10:59AM +0000, Ren, Yongjie wrote:
> > x86-run: correct a typo 'qemsystem' -> 'qemusystem'
> > Before this fix, you should always get error info as below when running
> 'x86-run' script.
> > "QEMU binary has no support for test device. Exiting."
> >
> Patch is whitespace damaged.
>
Sorry, I'll correct it and resend my patches.
> > Signed-off-by: Yongjie Ren <yongjie.ren@intel.com>
> > ---
> > x86-run | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/x86-run b/x86-run
> > index 2cf1f38..9526a0b 100755
> > --- a/x86-run
> > +++ b/x86-run
> > @@ -8,7 +8,7 @@ then
> > qemu="${qemukvm}"
> > else
> > if
> > - ${qemsystem} -device '?' 2>&1 | fgrep -e \"testdev\"
> -e \"pc-testdev\" > /dev/null;
> > + ${qemusystem} -device '?' 2>&1 | fgrep -e
> \"testdev\" -e \"pc-testdev\" > /dev/null;
> While you are at is lets replace fgrep invocation, which is deprecated,
> with grep -F.
>
Yeah, I also found this issue and want to use 'grep -F' instead.
I'll send another patch replace 'fgrep' with 'grep -F'.
> > then
> > qemu="${qemusystem}"
> > else
> > --
> > 1.7.9.5
>
> --
> Gleb.
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-06-24 8:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-24 6:10 [PATCH kvm-unit-tests 1/3] x86-run: correct a typo 'qemsystem' -> 'qemusystem' Ren, Yongjie
2013-06-24 8:03 ` Gleb Natapov
-- strict thread matches above, loose matches on Subject: below --
2013-06-24 8:17 Ren, Yongjie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.