Skip to content

Commit cf6d7c3

Browse files
committed
[lldb] Skip lldb-server unit tests when building with ASan
The lldb-server unit tests are failing on swift-ci and we haven't been able to figure out why. We've made several attempts to blindly address the issue but we've reached a point where we need to disable them to get signal out of this bot.
1 parent b889ab8 commit cf6d7c3

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)