7467d94cc4
Since check-block.sh, the "check" script has learnt to find the source
path. On the other hand, it expects common.env to be in the build tree
(both changes made in commit 76c7560
, "configure: Enable out-of-tree
iotests", 2014-05-24). So, it is wrong to invoke "check" from the source
path like check-block.sh does. Fix it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1450867341-11100-1-git-send-email-pbonzini@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
22 lines
461 B
Bash
Executable File
22 lines
461 B
Bash
Executable File
#!/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 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
|