From: Fam Zheng <famz@redhat.com>
To: Max Reitz <mreitz@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>,
qemu-block@nongnu.org, qemu-devel@nongnu.org,
Markus Armbruster <armbru@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v5 01/13] iotests: Move _filter_nbd into common.filter
Date: Wed, 4 Mar 2015 14:11:58 +0800 [thread overview]
Message-ID: <20150304061158.GA19563@ad.nay.redhat.com> (raw)
In-Reply-To: <1425413591-31413-2-git-send-email-mreitz@redhat.com>
On Tue, 03/03 15:12, Max Reitz wrote:
> _filter_nbd can be useful for other NBD tests, too, therefore it should
> reside in common.filter, and it should support URLs of the "nbd://"
> format and export names.
>
> The NBD log lines ("/your/source/dir/nbd.c:function():line: error")
> should not be converted to empty lines but removed altogether.
>
> Signed-off-by: Max Reitz <mreitz@redhat.com>
> ---
> tests/qemu-iotests/083 | 13 +------------
> tests/qemu-iotests/083.out | 10 ----------
> tests/qemu-iotests/common.filter | 12 ++++++++++++
> 3 files changed, 13 insertions(+), 22 deletions(-)
>
> diff --git a/tests/qemu-iotests/083 b/tests/qemu-iotests/083
> index 1b2d3f1..aa99278 100755
> --- a/tests/qemu-iotests/083
> +++ b/tests/qemu-iotests/083
> @@ -49,17 +49,6 @@ wait_for_tcp_port() {
> done
> }
>
> -filter_nbd() {
> - # nbd.c error messages contain function names and line numbers that are prone
> - # to change. Message ordering depends on timing between send and receive
> - # callbacks sometimes, making them unreliable.
> - #
> - # Filter out the TCP port number since this changes between runs.
> - sed -e 's#^.*nbd\.c:.*##g' \
> - -e 's#nbd:127\.0\.0\.1:[^:]*:#nbd:127\.0\.0\.1:PORT:#g' \
> - -e 's#\(exportname=foo\|PORT\): Failed to .*$#\1#'
> -}
> -
> check_disconnect() {
> event=$1
> when=$2
> @@ -84,7 +73,7 @@ EOF
>
> $PYTHON nbd-fault-injector.py $extra_args "127.0.0.1:$port" "$TEST_DIR/nbd-fault-injector.conf" 2>&1 >/dev/null &
> wait_for_tcp_port "127\\.0\\.0\\.1:$port"
> - $QEMU_IO -c "read 0 512" "$nbd_url" 2>&1 | _filter_qemu_io | filter_nbd
> + $QEMU_IO -c "read 0 512" "$nbd_url" 2>&1 | _filter_qemu_io | _filter_nbd
>
> echo
> }
> diff --git a/tests/qemu-iotests/083.out b/tests/qemu-iotests/083.out
> index 8c1441b..5c9141b 100644
> --- a/tests/qemu-iotests/083.out
> +++ b/tests/qemu-iotests/083.out
> @@ -51,7 +51,6 @@ no file open, try 'help open'
>
> === Check disconnect after neg2 ===
>
> -
> read failed: Input/output error
>
> === Check disconnect 8 neg2 ===
> @@ -66,42 +65,34 @@ no file open, try 'help open'
>
> === Check disconnect before request ===
>
> -
> read failed: Input/output error
>
> === Check disconnect after request ===
>
> -
> read failed: Input/output error
>
> === Check disconnect before reply ===
>
> -
> read failed: Input/output error
>
> === Check disconnect after reply ===
>
> -
> read failed: Input/output error
>
> === Check disconnect 4 reply ===
>
> -
> read failed: Input/output error
>
> === Check disconnect 8 reply ===
>
> -
> read failed: Input/output error
>
> === Check disconnect before data ===
>
> -
> read failed: Input/output error
>
> === Check disconnect after data ===
>
> -
> read 512/512 bytes at offset 0
> 512 bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
>
> @@ -132,7 +123,6 @@ no file open, try 'help open'
>
> === Check disconnect after neg-classic ===
>
> -
> read failed: Input/output error
>
> *** done
> diff --git a/tests/qemu-iotests/common.filter b/tests/qemu-iotests/common.filter
> index 012a812..99a1fc2 100644
> --- a/tests/qemu-iotests/common.filter
> +++ b/tests/qemu-iotests/common.filter
> @@ -225,5 +225,17 @@ _filter_qemu_img_map()
> -e 's/Mapped to *//' | _filter_testdir | _filter_imgfmt
> }
>
> +_filter_nbd()
> +{
> + # nbd.c error messages contain function names and line numbers that are
> + # prone to change. Message ordering depends on timing between send and
> + # receive callbacks sometimes, making them unreliable.
> + #
> + # Filter out the TCP port number since this changes between runs.
> + sed -e '/nbd\.c:/d' \
> + -e 's#nbd:\(//\)\?127\.0\.0\.1:[0-9]*#nbd:\1127.0.0.1:PORT#g' \
> + -e 's#\(exportname=foo\|PORT\): Failed to .*$#\1#'
> +}
> +
> # make sure this script returns success
> true
> --
> 2.1.0
>
Reviewed-by: Fam Zheng <famz@redhat.com>
next prev parent reply other threads:[~2015-03-04 6:12 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-03 20:12 [Qemu-devel] [PATCH v5 00/13] block: Rework bdrv_close_all() Max Reitz
2015-03-03 20:12 ` [Qemu-devel] [PATCH v5 01/13] iotests: Move _filter_nbd into common.filter Max Reitz
2015-03-04 6:11 ` Fam Zheng [this message]
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 02/13] iotests: Make redirecting qemu's stderr optional Max Reitz
2015-03-04 6:19 ` Fam Zheng
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 03/13] iotests: Add test for eject under NBD server Max Reitz
2015-03-04 6:30 ` Fam Zheng
2015-03-04 14:02 ` Max Reitz
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 04/13] quorum: Fix close path Max Reitz
2015-03-04 6:32 ` Fam Zheng
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 05/13] block: Move BDS close notifiers into BB Max Reitz
2015-03-19 18:17 ` Eric Blake
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 06/13] block: Use blk_remove_bs() in blk_delete() Max Reitz
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 07/13] blockdev: Use blk_remove_bs() in do_drive_del() Max Reitz
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 08/13] block: Make bdrv_close() static Max Reitz
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 09/13] block: Add list of all BlockDriverStates Max Reitz
2015-03-19 19:15 ` Eric Blake
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 10/13] blockdev: Keep track of monitor-owned BDS Max Reitz
2015-03-19 19:18 ` Eric Blake
2015-03-20 8:04 ` Markus Armbruster
2015-03-20 12:52 ` Max Reitz
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 11/13] block: Add blk_remove_all_bs() Max Reitz
2015-03-19 22:16 ` Eric Blake
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 12/13] block: Rewrite bdrv_close_all() Max Reitz
2015-03-03 20:13 ` [Qemu-devel] [PATCH v5 13/13] iotests: Add test for multiple BB on BDS tree Max Reitz
2015-03-04 12:42 ` [Qemu-devel] [PATCH v5 00/13] block: Rework bdrv_close_all() Kevin Wolf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150304061158.GA19563@ad.nay.redhat.com \
--to=famz@redhat.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).