Qemu_iotests upstream has supported format qed, so add format 'qed' support qemu_iotests in autotest. It seems I can't attatch the qemu_iotests tarball with the patch.
So you can get it from git://git.kernel.org/pub/scm/linux/kernel/git/hch/qemu-iotests.git Then tar it via "tar jcf qemu-iotests.tar.bz2 qemu-iotests " and replace /client/tests/qemu_iotests/qemu-iotests.tar.bz2 with it. Signed-off-by: Wenyi Gao <[email protected]> --- client/tests/qemu_iotests/control | 2 +- client/tests/qemu_iotests/qemu_iotests.py | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/client/tests/qemu_iotests/control b/client/tests/qemu_iotests/control index 789296a..528418f 100644 --- a/client/tests/qemu_iotests/control +++ b/client/tests/qemu_iotests/control @@ -26,7 +26,7 @@ Please send improvements to the upstream test suite, general feedback or just reports of failing tests cases to [email protected]. """ -image_types = ['raw', 'cow', 'qcow', 'qcow2', 'vpc', 'vmdk'] +image_types = ['raw', 'cow', 'qcow', 'qcow2', 'vpc', 'vmdk', 'qed'] for image_type in image_types: option_flag = '-' + image_type diff --git a/client/tests/qemu_iotests/qemu_iotests.py b/client/tests/qemu_iotests/qemu_iotests.py index 1a036b9..25ddb37 100644 --- a/client/tests/qemu_iotests/qemu_iotests.py +++ b/client/tests/qemu_iotests/qemu_iotests.py @@ -49,6 +49,7 @@ class qemu_iotests(test.test): # -qcow2 test qcow2 # -vpc test vpc # -vmdk test vmdk + # -qed test qed # -xdiff graphical mode diff # -nocache use O_DIRECT on backing file # -misalign misalign memory allocations -- 1.7.5.4 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
