diff options
| author | Denis V. Lunev | 2016-09-15 18:42:49 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2016-09-23 13:36:09 +0200 |
| commit | c2519009b428fb19a9fdbc707e786b1cebd4994f (patch) | |
| tree | 4d1ae49e79cf9e7965203a72565c22120232395d /tests | |
| parent | hmp: Remove dead code in hmp_qemu_io() (diff) | |
| download | qemu-c2519009b428fb19a9fdbc707e786b1cebd4994f.tar.gz qemu-c2519009b428fb19a9fdbc707e786b1cebd4994f.tar.xz qemu-c2519009b428fb19a9fdbc707e786b1cebd4994f.zip | |
tests: allow to specify list of formats to test for check-block.sh
This would make code better and allow to test specific format.
Signed-off-by: Denis V. Lunev <den@openvz.org>
CC: Stefan Hajnoczi <stefanha@redhat.com>
CC: Kevin Wolf <kwolf@redhat.com>
CC: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/check-block.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/check-block.sh b/tests/check-block.sh index a37797a494..c3de3789c4 100755 --- a/tests/check-block.sh +++ b/tests/check-block.sh @@ -1,5 +1,10 @@ #!/bin/sh +FORMAT_LIST="raw qcow2 qed vmdk vpc" +if [ "$#" -ne 0 ]; then + FORMAT_LIST="$@" +fi + export QEMU_PROG="$(pwd)/x86_64-softmmu/qemu-system-x86_64" export QEMU_IMG_PROG="$(pwd)/qemu-img" export QEMU_IO_PROG="$(pwd)/qemu-io" @@ -12,10 +17,8 @@ fi cd tests/qemu-iotests ret=0 -./check -T -nocache -raw || ret=1 -./check -T -nocache -qcow2 || ret=1 -./check -T -nocache -qed|| ret=1 -./check -T -nocache -vmdk|| ret=1 -./check -T -nocache -vpc || ret=1 +for FMT in $FORMAT_LIST ; do + ./check -T -nocache -$FMT || ret=1 +done exit $ret |
