summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2019-08-23 10:42:03 +0200
committerMax Reitz <mreitz@redhat.com>2019-09-03 14:56:06 +0200
commit2cc4d1c5eab1d7b1fd7112c1fafccaf648b92a86 (patch)
tree46731bd8f93f975db91a3bee58141a654c94c281
parent21b43d004813ae71d964f74e59ff149bb480db73 (diff)
downloadfocaccia-qemu-2cc4d1c5eab1d7b1fd7112c1fafccaf648b92a86.tar.gz
focaccia-qemu-2cc4d1c5eab1d7b1fd7112c1fafccaf648b92a86.zip
tests/check-block: Skip iotests when sanitizers are enabled
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 <thuth@redhat.com>
Message-id: 20190823084203.29734-1-thuth@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
-rwxr-xr-xtests/check-block.sh5
1 files changed, 5 insertions, 0 deletions
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