We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c4a73c commit 29cde88Copy full SHA for 29cde88
clang/bindings/python/tests/CMakeLists.txt
@@ -15,13 +15,13 @@ if(NOT LLVM_ENABLE_PIC)
15
set(RUN_PYTHON_TESTS FALSE)
16
endif()
17
18
-# Do not try to run if libclang was built with ASan/MSan because
+# Do not try to run if libclang was built with sanitizers because
19
# the sanitizer library will likely be loaded too late to perform
20
# interception and will then fail.
21
# We could use LD_PRELOAD/DYLD_INSERT_LIBRARIES but this isn't
22
# portable so its easier just to not run the tests when building
23
# with ASan.
24
-if(LLVM_USE_SANITIZER MATCHES ".*(Memory|Address).*")
+if(NOT LLVM_USE_SANITIZER STREQUAL "")
25
26
27
0 commit comments