summaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/common.rc
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2009-07-09 15:26:11 +0200
committerKevin Wolf <kwolf@redhat.com>2012-02-22 16:17:01 +0100
commite76a8e893d2b005cb966bfbfff4bbba8f7cd302d (patch)
tree40c926e0514463785690f614a823abc306a134c6 /tests/qemu-iotests/common.rc
parente021915abd06d10c7a20dfd589407e7c4d6a313f (diff)
downloadqemu-e76a8e893d2b005cb966bfbfff4bbba8f7cd302d.tar.gz
qemu-iotests: make a few more tests generic
Pretend that a non-implemented check is always successful and thus allow various tests that were qcow2-specific before to be generic. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/common.rc')
-rw-r--r--tests/qemu-iotests/common.rc3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/common.rc b/tests/qemu-iotests/common.rc
index c4337d50cb..a05a250d74 100644
--- a/tests/qemu-iotests/common.rc
+++ b/tests/qemu-iotests/common.rc
@@ -75,7 +75,8 @@ _cleanup_test_img()
_check_test_img()
{
- $QEMU_IMG check -f $IMGFMT $TEST_IMG
+ $QEMU_IMG check -f $IMGFMT $TEST_IMG 2>&1 | \
+ sed -e 's/qemu-img\: This image format does not support checks/No errors were found on the image./'
}
_get_pids_by_name()