From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39062) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S76zB-0008V3-03 for qemu-devel@nongnu.org; Mon, 12 Mar 2012 11:16:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S76z8-0005Ob-IP for qemu-devel@nongnu.org; Mon, 12 Mar 2012 11:16:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35649) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S76z8-0005O8-Ad for qemu-devel@nongnu.org; Mon, 12 Mar 2012 11:16:30 -0400 From: Kevin Wolf Date: Mon, 12 Mar 2012 16:19:39 +0100 Message-Id: <1331565591-8414-9-git-send-email-kwolf@redhat.com> In-Reply-To: <1331565591-8414-1-git-send-email-kwolf@redhat.com> References: <1331565591-8414-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 08/20] Add 'make check-block' List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org Runs the full qemu-iotests suite for various image formats. Signed-off-by: Kevin Wolf --- tests/Makefile | 7 ++++++- tests/check-block.sh | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletions(-) create mode 100755 tests/check-block.sh diff --git a/tests/Makefile b/tests/Makefile index 571ad42..c78ade1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -47,6 +47,11 @@ test-qmp-commands: test-qmp-commands.o $(qobject-obj-y) $(qapi-obj-y) $(tools-ob $(SRC_PATH)/tests/qemu-iotests-quick.sh: qemu-img qemu-io -.PHONY: check + +.PHONY: check check-block + check: $(CHECKS) $(call quiet-command, gtester $(CHECKS), " CHECK") + +check-block: + $(call quiet-command, $(SHELL) $(SRC_PATH)/tests/check-block.sh , " CHECK") diff --git a/tests/check-block.sh b/tests/check-block.sh new file mode 100755 index 0000000..b9d9c6a --- /dev/null +++ b/tests/check-block.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +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" + +if [ ! -x $QEMU_PROG ]; then + echo "'make check-block' requires qemu-system-x86_64" + exit 1 +fi + +cd $SRC_PATH/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 + +exit $ret -- 1.7.6.5