2012-03-09 13:37:40 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-10-27 15:31:44 +02:00
|
|
|
if [ "$#" -eq 0 ]; then
|
|
|
|
echo "Usage: $0 fmt..." >&2
|
|
|
|
exit 99
|
|
|
|
fi
|
|
|
|
|
2021-10-06 11:27:47 +02:00
|
|
|
# Honor the SPEED environment variable, just like we do it for "meson test"
|
2021-10-27 15:31:44 +02:00
|
|
|
format_list="$@"
|
|
|
|
if [ "$SPEED" = "slow" ] || [ "$SPEED" = "thorough" ]; then
|
2019-07-12 17:39:33 +02:00
|
|
|
group=
|
|
|
|
else
|
|
|
|
group="-g auto"
|
|
|
|
fi
|
|
|
|
|
2021-10-06 11:27:47 +02:00
|
|
|
skip() {
|
2022-01-07 13:18:11 +01:00
|
|
|
echo "1..0 #SKIP $*"
|
|
|
|
exit 0
|
2021-10-06 11:27:47 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 17:39:33 +02:00
|
|
|
if [ -z "$(find . -name 'qemu-system-*' -print)" ]; then
|
2021-10-06 11:27:47 +02:00
|
|
|
skip "No qemu-system binary available ==> Not running the qemu-iotests."
|
2019-07-12 17:39:33 +02:00
|
|
|
fi
|
|
|
|
|
2015-12-23 11:42:21 +01:00
|
|
|
cd tests/qemu-iotests
|
2012-03-09 13:37:40 +01:00
|
|
|
|
2020-09-07 13:38:24 +02:00
|
|
|
# QEMU_CHECK_BLOCK_AUTO is used to disable some unstable sub-tests
|
|
|
|
export QEMU_CHECK_BLOCK_AUTO=1
|
2021-01-25 19:50:55 +01:00
|
|
|
export PYTHONUTF8=1
|
2021-12-23 19:39:33 +01:00
|
|
|
# If make was called with -jN we want to call ./check with -j N. Extract the
|
|
|
|
# flag from MAKEFLAGS, so that if it absent (or MAKEFLAGS is not defined), JOBS
|
|
|
|
# would be an empty line otherwise JOBS is prepared string of flag with value:
|
|
|
|
# "-j N"
|
|
|
|
# Note, that the following works even if make was called with "-j N" or even
|
|
|
|
# "--jobs N", as all these variants becomes simply "-jN" in MAKEFLAGS variable.
|
|
|
|
JOBS=$(echo "$MAKEFLAGS" | sed -n 's/\(^\|.* \)-j\([0-9]\+\)\( .*\|$\)/-j \2/p')
|
2020-09-07 13:38:24 +02:00
|
|
|
|
2012-03-09 13:37:40 +01:00
|
|
|
ret=0
|
2019-07-12 17:39:33 +02:00
|
|
|
for fmt in $format_list ; do
|
2022-01-07 13:18:11 +01:00
|
|
|
${PYTHON} ./check $JOBS -tap -$fmt $group || ret=1
|
2016-09-15 18:42:49 +02:00
|
|
|
done
|
2012-03-09 13:37:40 +01:00
|
|
|
|
|
|
|
exit $ret
|