Skip to content

Commit 4301aa1

Browse files
authored
Merge pull request #8059 from apple/jdevlieghere/skip-lldb-server-unit-tests-asan
[lldb] Skip lldb-server unit tests when building with ASan
2 parents 07b26e3 + cf6d7c3 commit 4301aa1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/unittests/tools/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
if(LLDB_TOOL_LLDB_SERVER_BUILD)
2-
add_subdirectory(lldb-server)
2+
if (NOT LLVM_USE_SANITIZER MATCHES ".*Address.*")
3+
add_subdirectory(lldb-server)
4+
endif()
35
endif()

0 commit comments

Comments
 (0)