Commit b8c6f29e authored by Kevin Wolf's avatar Kevin Wolf
Browse files

Add 'make check-block'



Runs the full qemu-iotests suite for various image formats.

Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
parent 8959449b
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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")

tests/check-block.sh

0 → 100755
+21 −0
Original line number Diff line number Diff line
#!/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