diff options
author | Alberto Garcia | 2018-03-22 15:45:51 +0100 |
---|---|---|
committer | Kevin Wolf | 2018-04-03 16:58:48 +0200 |
commit | 627f607e3dddb23cef69374c8bfb09a33d19926a (patch) | |
tree | cd19c22a7a154392d6f84aba847929125b2a2371 /tests/qemu-iotests/186 | |
parent | iotests: Update 051 and 186 after commit 1454509726719e0933c (diff) | |
download | qemu-627f607e3dddb23cef69374c8bfb09a33d19926a.tar.gz qemu-627f607e3dddb23cef69374c8bfb09a33d19926a.tar.xz qemu-627f607e3dddb23cef69374c8bfb09a33d19926a.zip |
iotests: Update 186 after commit ac64273c66ab136c44043259162
Commit ac64273c66ab136c44 modified the output of iotest 186, changing
the QOM path of floppy drives from /machine/unattached/device[17] to
/machine/unattached/device[13].
Instead of updating the test output to reflect this change, this patch
adds a new filter that hides all QOM paths from the 'Attached to:'
line of the 'info block' command.
Signed-off-by: Alberto Garcia <berto@igalia.com>
Cc: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/186')
-rwxr-xr-x | tests/qemu-iotests/186 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/186 b/tests/qemu-iotests/186 index 9687243d34..0aa4395a57 100755 --- a/tests/qemu-iotests/186 +++ b/tests/qemu-iotests/186 @@ -64,7 +64,7 @@ function check_info_block() { echo "info block" | do_run_qemu "$@" | _filter_win32 | _filter_hmp | _filter_qemu | - _filter_generated_node_ids + _filter_generated_node_ids | _filter_qom_path } |