* [Qemu-devel] [PATCH 1/1] tests: allow to specify list of formats to test for check-block.sh
@ 2016-09-15 16:42 Denis V. Lunev
2016-09-16 8:44 ` Kevin Wolf
0 siblings, 1 reply; 2+ messages in thread
From: Denis V. Lunev @ 2016-09-15 16:42 UTC (permalink / raw)
To: qemu-block, qemu-devel; +Cc: den, Stefan Hajnoczi, Kevin Wolf, Paolo Bonzini
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>
---
tests/check-block.sh | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/tests/check-block.sh b/tests/check-block.sh
index a37797a..c3de378 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
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH 1/1] tests: allow to specify list of formats to test for check-block.sh
2016-09-15 16:42 [Qemu-devel] [PATCH 1/1] tests: allow to specify list of formats to test for check-block.sh Denis V. Lunev
@ 2016-09-16 8:44 ` Kevin Wolf
0 siblings, 0 replies; 2+ messages in thread
From: Kevin Wolf @ 2016-09-16 8:44 UTC (permalink / raw)
To: Denis V. Lunev; +Cc: qemu-block, qemu-devel, Stefan Hajnoczi, Paolo Bonzini
Am 15.09.2016 um 18:42 hat Denis V. Lunev geschrieben:
> 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>
Thanks, applied to the block branch.
Kevin
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-16 8:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-15 16:42 [Qemu-devel] [PATCH 1/1] tests: allow to specify list of formats to test for check-block.sh Denis V. Lunev
2016-09-16 8:44 ` Kevin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).