]> git.notmuchmail.org Git - notmuch/blobdiff - test/T800-asan.sh
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / test / T800-asan.sh
index 5055c93e122b2c82449e5df4cf5d38632d971545..9ce6baa7c80b34e767bd8900f2f74c8498676818 100755 (executable)
@@ -2,11 +2,16 @@
 test_description='run code with ASAN enabled against the library'
 . $(dirname "$0")/test-lib.sh || exit 1
 
-if [ $NOTMUCH_HAVE_ASAN -ne 1 ]; then
+if [ "${NOTMUCH_HAVE_ASAN-0}" != "1" ]; then
     printf "Skipping due to missing ASAN support\n"
     test_done
 fi
 
+if [ -n "${LD_PRELOAD-}" ]; then
+    printf "Skipping due to ASAN LD_PRELOAD restrictions\n"
+    test_done
+fi
+
 add_email_corpus
 
 TEST_CFLAGS="${TEST_CFLAGS:-} -fsanitize=address"