aboutsummaryrefslogtreecommitdiff
path: root/tests/check-block.sh
blob: f3d12fd602d07b4a097a2e7e23ec1aa1c41cbc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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"

if [ ! -x $QEMU_PROG ]; then
    echo "'make check-block' requires qemu-system-x86_64"
    exit 1
fi

cd tests/qemu-iotests

ret=0
for FMT in $FORMAT_LIST ; do
    ./check -T -nocache -$FMT || ret=1
done

exit $ret