diff options
author | Stefan Hajnoczi | 2013-02-07 17:15:04 +0100 |
---|---|---|
committer | Kevin Wolf | 2013-02-22 21:21:09 +0100 |
commit | e6439d783cce2c5cdbe4f8028f0b45162b540f82 (patch) | |
tree | 5f8cfd4117e1f22852af8e8546c6146af983d2c8 /tests/qemu-iotests/common.rc | |
parent | qemu-img: fix missing space in qemu-img check output (diff) | |
download | qemu-e6439d783cce2c5cdbe4f8028f0b45162b540f82.tar.gz qemu-e6439d783cce2c5cdbe4f8028f0b45162b540f82.tar.xz qemu-e6439d783cce2c5cdbe4f8028f0b45162b540f82.zip |
qemu-img: add compressed clusters to BlockFragInfo
Show how many clusters are compressed. This can be used to monitor how
many compressed clusters remain and whether to recompress the image.
Suggested-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/common.rc')
-rw-r--r-- | tests/qemu-iotests/common.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc index 5ba960b09f..e522d617aa 100644 --- a/tests/qemu-iotests/common.rc +++ b/tests/qemu-iotests/common.rc @@ -162,7 +162,7 @@ _cleanup_test_img() _check_test_img() { $QEMU_IMG check "$@" -f $IMGFMT $TEST_IMG 2>&1 | \ - sed -e "/fragmented$/d" \ + sed -e '/allocated.*fragmented.*compressed clusters/d' \ -e 's/qemu-img: This image format does not support checks/No errors were found on the image./' \ -e '/Image end offset: [0-9]\+/d' } |