diff options
author | Fam Zheng <famz@redhat.com> | 2015-12-22 10:49:21 +0800 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:28:21 -0600 |
commit | 74effce8b781fbf3173846104700b9f10c526cb0 (patch) | |
tree | ffdddbd8eb41e42f2e8ea745f2104639e5db900d /tests/qemu-iotests | |
parent | 7adbf37d0e5cf02c89056f58d30eb568707884b0 (diff) | |
download | hqemu-74effce8b781fbf3173846104700b9f10c526cb0.zip hqemu-74effce8b781fbf3173846104700b9f10c526cb0.tar.gz |
iotests: 095: Filter _img_info output
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1450752561-9300-12-git-send-email-famz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests/qemu-iotests')
-rwxr-xr-x | tests/qemu-iotests/095 | 4 | ||||
-rw-r--r-- | tests/qemu-iotests/095.out | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/qemu-iotests/095 b/tests/qemu-iotests/095 index 57a730e..dad04b9 100755 --- a/tests/qemu-iotests/095 +++ b/tests/qemu-iotests/095 @@ -58,7 +58,7 @@ _make_test_img -b "${TEST_IMG}.snp1" $size_larger echo echo "=== Base image info before commit and resize ===" -TEST_IMG="${TEST_IMG}.base" _img_info +TEST_IMG="${TEST_IMG}.base" _img_info | _filter_img_info echo echo === Running QEMU Live Commit Test === @@ -76,7 +76,7 @@ _send_qemu_cmd $h "{ 'execute': 'block-commit', echo echo "=== Base image info after commit and resize ===" -TEST_IMG="${TEST_IMG}.base" _img_info +TEST_IMG="${TEST_IMG}.base" _img_info | _filter_img_info # success, all done echo "*** done" diff --git a/tests/qemu-iotests/095.out b/tests/qemu-iotests/095.out index 61a2057..73875ca 100644 --- a/tests/qemu-iotests/095.out +++ b/tests/qemu-iotests/095.out @@ -7,7 +7,6 @@ Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=104857600 backing_file=TEST_DIR/ image: TEST_DIR/t.IMGFMT.base file format: IMGFMT virtual size: 5.0M (5242880 bytes) -cluster_size: 65536 === Running QEMU Live Commit Test === @@ -19,5 +18,4 @@ cluster_size: 65536 image: TEST_DIR/t.IMGFMT.base file format: IMGFMT virtual size: 100M (104857600 bytes) -cluster_size: 65536 *** done |