2012-03-09 16:37:40 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-07-12 18:39:33 +03:00
|
|
|
# Honor the SPEED environment variable, just like we do it for the qtests.
|
|
|
|
if [ "$SPEED" = "slow" ]; then
|
|
|
|
format_list="raw qcow2"
|
|
|
|
group=
|
|
|
|
elif [ "$SPEED" = "thorough" ]; then
|
|
|
|
format_list="raw qcow2 qed vmdk vpc"
|
|
|
|
group=
|
|
|
|
else
|
|
|
|
format_list=qcow2
|
|
|
|
group="-g auto"
|
|
|
|
fi
|
|
|
|
|
2016-09-15 19:42:49 +03:00
|
|
|
if [ "$#" -ne 0 ]; then
|
2019-07-12 18:39:33 +03:00
|
|
|
format_list="$@"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if grep -q "TARGET_GPROF=y" *-softmmu/config-target.mak 2>/dev/null ; then
|
|
|
|
echo "GPROF is enabled ==> Not running the qemu-iotests."
|
|
|
|
exit 0
|
2016-09-15 19:42:49 +03:00
|
|
|
fi
|
|
|
|
|
2019-08-23 11:42:03 +03:00
|
|
|
if grep -q "CFLAGS.*-fsanitize" config-host.mak 2>/dev/null ; then
|
|
|
|
echo "Sanitizers are enabled ==> Not running the qemu-iotests."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2019-07-12 18:39:33 +03:00
|
|
|
if [ -z "$(find . -name 'qemu-system-*' -print)" ]; then
|
|
|
|
echo "No qemu-system binary available ==> Not running the qemu-iotests."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! command -v bash >/dev/null 2>&1 ; then
|
|
|
|
echo "bash not available ==> Not running the qemu-iotests."
|
|
|
|
exit 0
|
|
|
|
fi
|
2012-03-09 16:37:40 +04:00
|
|
|
|
2019-07-12 18:39:33 +03:00
|
|
|
if ! (sed --version | grep 'GNU sed') > /dev/null 2>&1 ; then
|
|
|
|
if ! command -v gsed >/dev/null 2>&1; then
|
|
|
|
echo "GNU sed not available ==> Not running the qemu-iotests."
|
|
|
|
exit 0
|
|
|
|
fi
|
2012-03-09 16:37:40 +04:00
|
|
|
fi
|
|
|
|
|
2015-12-23 13:42:21 +03:00
|
|
|
cd tests/qemu-iotests
|
2012-03-09 16:37:40 +04:00
|
|
|
|
|
|
|
ret=0
|
2019-07-12 18:39:33 +03:00
|
|
|
for fmt in $format_list ; do
|
|
|
|
./check -makecheck -$fmt $group || ret=1
|
2016-09-15 19:42:49 +03:00
|
|
|
done
|
2012-03-09 16:37:40 +04:00
|
|
|
|
|
|
|
exit $ret
|