Files
clang-p2996/lldb/unittests/Symbol/CMakeLists.txt
Pavel Labath 387f3e8f98 [lldb] s/ValidRange/ValidRanges in UnwindPlan (#127661)
To be able to describe discontinuous functions, this patch changes the
UnwindPlan to accept more than one address range.

I've also squeezed in a couple improvements/modernizations, for example
using the lower_bound function instead of a linear scan.
2025-03-21 10:46:48 +01:00

34 lines
686 B
CMake

add_lldb_unittest(SymbolTests
JSONSymbolTest.cpp
LineTableTest.cpp
LocateSymbolFileTest.cpp
MangledTest.cpp
PostfixExpressionTest.cpp
SymbolTest.cpp
SymtabTest.cpp
TestTypeSystem.cpp
TestTypeSystemClang.cpp
TestClangASTImporter.cpp
TestDWARFCallFrameInfo.cpp
TestType.cpp
TestLineEntry.cpp
UnwindPlanTest.cpp
LINK_LIBS
lldbCore
lldbHost
lldbSymbol
lldbUtilityHelpers
lldbPluginObjectFileELF
lldbPluginObjectFileMachO
lldbPluginSymbolFileDWARF
lldbPluginSymbolFileSymtab
lldbPluginTypeSystemClang
LLVMTestingSupport
)
set(test_inputs
inlined-functions.yaml
)
add_unittest_inputs(SymbolTests "${test_inputs}")