diff options
author | Max Reitz <mreitz@redhat.com> | 2017-10-09 18:34:55 +0200 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2017-10-26 15:01:13 +0200 |
commit | 44673a0b59d1fafd1abfdf35a1ac924b856c6ad5 (patch) | |
tree | af74021733aaec5831b21522a6dc4e1862c262ae /tests/qemu-iotests/087 | |
parent | f700ceae8ab57a5c8973932c14f9abba1f99e5a8 (diff) |
iotests: Pull _filter_actual_image_size from 67/87
Tests 067 and 087 filter the actual image size because it depends on the
host filesystem (and is not part of the respective test). Since this is
generally true, we should have a common filter function for this, so
let's pull out the sed line from both tests into such a function.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Message-id: 20171009163456.485-2-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/087')
-rwxr-xr-x | tests/qemu-iotests/087 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/087 b/tests/qemu-iotests/087 index f8e4903f4f..27ab6c5151 100755 --- a/tests/qemu-iotests/087 +++ b/tests/qemu-iotests/087 @@ -46,7 +46,7 @@ function run_qemu() { do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp \ | _filter_qemu | _filter_imgfmt \ - | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g' + | _filter_actual_image_size } size=128M |