mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Add 'make check-block'
Runs the full qemu-iotests suite for various image formats. Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
8959449bb9
commit
b8c6f29eb8
2 changed files with 27 additions and 1 deletions
21
tests/check-block.sh
Executable file
21
tests/check-block.sh
Executable file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue