diff options
author | Max Reitz <mreitz@redhat.com> | 2017-10-09 18:34:56 +0200 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2017-10-26 15:01:13 +0200 |
commit | b66df843b442924745d196bd0a05f0639b808164 (patch) | |
tree | 8b2a394497d374dd0df72656ad53f3a40ad24e78 /tests/qemu-iotests/184 | |
parent | 44673a0b59d1fafd1abfdf35a1ac924b856c6ad5 (diff) |
iotests: Filter actual image size in 184 and 191
Whenever the actual image size is not part of the test, it should be
filtered as it depends on the host filesystem.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-id: 20171009163456.485-3-mreitz@redhat.com
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/184')
-rwxr-xr-x | tests/qemu-iotests/184 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/184 b/tests/qemu-iotests/184 index 704f38f936..ee96c99af3 100755 --- a/tests/qemu-iotests/184 +++ b/tests/qemu-iotests/184 @@ -51,7 +51,8 @@ function do_run_qemu() function run_qemu() { do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp\ - | _filter_qemu_io | _filter_generated_node_ids + | _filter_qemu_io | _filter_generated_node_ids \ + | _filter_actual_image_size } _make_test_img 64M |