Skip to content

Commit 071ac0a

Browse files
committed
[lldb] Skip lldb-server unit tests when building with ASan
The lldb-server unit tests are timing out on GreenDragon and swift-ci. We haven't been able to reproduce this locally or figure out why. We've made several attempts to address potential issues, but we've reached a point where we need to skip them to get signal out of this bot again.
1 parent 9e485f4 commit 071ac0a

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)