[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 2/3] qemu-iotests: Filter HMP readline escape ch
From: |
Kevin Wolf |
Subject: |
Re: [Qemu-devel] [PATCH 2/3] qemu-iotests: Filter HMP readline escape characters |
Date: |
Wed, 19 Apr 2017 16:45:46 +0200 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
Am 13.04.2017 um 19:38 hat Eric Blake geschrieben:
> On 04/13/2017 12:23 PM, Kevin Wolf wrote:
> > The only thing the escape characters achieve is making the reference
> > output unreadable and lines that are potentially so long that git
> > doesn't want to put them into an email any more. Let's filter them out.
>
> Hear! Hear!
>
> >
> > Signed-off-by: Kevin Wolf <address@hidden>
> > ---
> > tests/qemu-iotests/028.out | 2 +-
> > tests/qemu-iotests/130.out | 4 ++--
> > tests/qemu-iotests/common.filter | 7 +++++++
> > tests/qemu-iotests/common.qemu | 4 ++--
> > 4 files changed, 12 insertions(+), 5 deletions(-)
>
> Yay! But I think you're incomplete:
>
> What about 051, 068, 142, and 145?
I only converted the cases that use common.qemu, so they failed after
my change. The other test cases you found are running qemu manually and
didn't apply the filter yet, so they wouldn't fail.
For v2, I'll add the new filter to them and change the reference output
accordingly.
> (found by:
> git grep -l $'\e' tests/qemu-iotests/*.out
> using bash as the shell)
>
>
> > +++ b/tests/qemu-iotests/common.filter
> > @@ -86,6 +86,13 @@ _filter_qmp()
> > -e ' QMP_VERSION'
> > }
> >
> > +# readline makes HMP command strings so long that git complains
> > +_filter_hmp()
> > +{
> > + sed -e 's/(qemu).*\o33\[D/(qemu) /g' \
>
> \oNN is a GNU sed-ism, as far as I can tell. Is it portable to our
> BSD/MacOS builds?
I'll use your bash version in v2.
Kevin
pgpFPTTMwWaKq.pgp
Description: PGP signature
[Qemu-devel] [PATCH 2/3] qemu-iotests: Filter HMP readline escape characters, Kevin Wolf, 2017/04/13
[Qemu-devel] [PATCH 3/3] qemu-iotests: Test postcopy migration, Kevin Wolf, 2017/04/13