[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 14/15] tests/check-block: Skip iotests when sanitizer
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PULL 14/15] tests/check-block: Skip iotests when sanitizers are enabled |
Date: |
Tue, 27 Aug 2019 20:23:12 +0200 |
From: Thomas Huth <address@hidden>
The sanitizers (especially the address sanitizer from Clang) are
sometimes printing out warnings or false positives - this spoils
the output of the iotests, causing some of the tests to fail.
Thus let's skip the automatic iotests during "make check" when the
user configured QEMU with --enable-sanitizers.
Signed-off-by: Thomas Huth <address@hidden>
Message-id: address@hidden
Signed-off-by: Max Reitz <address@hidden>
---
tests/check-block.sh | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/check-block.sh b/tests/check-block.sh
index c8b6cec3f6..679aedec50 100755
--- a/tests/check-block.sh
+++ b/tests/check-block.sh
@@ -21,6 +21,11 @@ if grep -q "TARGET_GPROF=y" *-softmmu/config-target.mak
2>/dev/null ; then
exit 0
fi
+if grep -q "CFLAGS.*-fsanitize" config-host.mak 2>/dev/null ; then
+ echo "Sanitizers are enabled ==> Not running the qemu-iotests."
+ exit 0
+fi
+
if [ -z "$(find . -name 'qemu-system-*' -print)" ]; then
echo "No qemu-system binary available ==> Not running the qemu-iotests."
exit 0
--
2.21.0
- [Qemu-devel] [PULL 03/15] block: posix: Always allocate the first block, (continued)
- [Qemu-devel] [PULL 03/15] block: posix: Always allocate the first block, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 05/15] iotests: Fix _filter_img_create(), Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 06/15] vmdk: Use bdrv_dirname() for relative extent paths, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 07/15] iotests: Keep testing broken relative extent paths, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 08/15] vmdk: Reject invalid compressed writes, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 10/15] iotests: Disable 110 for vmdk.twoGbMaxExtentSparse, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 09/15] iotests: Disable broken streamOptimized tests, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 11/15] iotests: Disable 126 for flat vmdk subformats, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 12/15] file-posix: fix request_alignment typo, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 13/15] iotests: Check for enabled drivers before testing them, Max Reitz, 2019/08/27
- [Qemu-devel] [PULL 14/15] tests/check-block: Skip iotests when sanitizers are enabled,
Max Reitz <=
- [Qemu-devel] [PULL 15/15] iotests: Unify cache mode quoting, Max Reitz, 2019/08/27