mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-16 07:49:43 +00:00
![Zachary Turner](/assets/img/avatar_default.png)
This was causing a test failure in one of LLDB's tests which specifically dealt with a limitation in LLVM's implementation of home_directory() that LLDB's own implementation had worked around. This limitation has been addressed in r298513 on the LLVM side, so the failing test (which is now unnecessary as the limitation no longer exists) was removed in r298519, allowing this patch to be re-submitted without modification. llvm-svn: 298526
21 lines
355 B
CMake
21 lines
355 B
CMake
add_subdirectory(Mocks)
|
|
|
|
add_lldb_unittest(UtilityTests
|
|
ConstStringTest.cpp
|
|
ErrorTest.cpp
|
|
LogTest.cpp
|
|
NameMatchesTest.cpp
|
|
StringExtractorTest.cpp
|
|
TaskPoolTest.cpp
|
|
TildeExpressionResolverTest.cpp
|
|
TimeoutTest.cpp
|
|
UriParserTest.cpp
|
|
VASprintfTest.cpp
|
|
|
|
LINK_LIBS
|
|
lldbUtility
|
|
lldbUtilityMocks
|
|
LINK_COMPONENTS
|
|
Support
|
|
)
|